Files
UT99-Mod-IChaChaMutEngine/Classes/ICCME_Event_DeathMatch_Shoot.uc
2023-06-05 23:00:36 +01:00

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
}