25 lines
522 B
Ucode
25 lines
522 B
Ucode
class ICCME_Event_DeathMatch_Shoot extends ICCME_Event_DeathMatchBase;
|
|
|
|
var class<Weapon> WeaponCls;
|
|
var Pawn InstigatedBy;
|
|
var ICCME_Stats_Player_DeathMatch InstigatorStats;
|
|
var bool bAlt;
|
|
var bool bIsComboShock;
|
|
var float Amount;
|
|
|
|
function doLog()
|
|
{
|
|
super.doLog();
|
|
log("WeaponCls:"@WeaponCls);
|
|
log("InstigatedBy:"@InstigatedBy);
|
|
log("InstigatorStats:"@InstigatorStats);
|
|
log("bAlt:"@bAlt);
|
|
log("bIsComboShock:"@bIsComboShock);
|
|
log("Amount:"@Amount);
|
|
}
|
|
|
|
|
|
defaultproperties
|
|
{
|
|
Amount=1
|
|
} |