Files
UT99-Mod-IChaChaMutEngine/Classes/ICCME_Event_DeathMatch_Shoot.uc
2025-08-25 22:27:39 +02:00

29 lines
664 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 bool bIsSelfComboShock;
var bool bIsComboGib;
var float Amount;
function doLog()
{
super.doLog();
log("WeaponCls:"@WeaponCls);
log("InstigatedBy:"@InstigatedBy);
log("InstigatorStats:"@InstigatorStats);
log("bAlt:"@bAlt);
log("bIsComboShock:"@bIsComboShock);
log("bIsSelfComboShock:"@bIsSelfComboShock);
log("bIsComboGib:"@bIsComboGib);
log("Amount:"@Amount);
}
defaultproperties
{
Amount=1
}