23 lines
606 B
Ucode
23 lines
606 B
Ucode
class ICCME_Event_DeathMatch_TakeDamage extends ICCME_Event_DeathMatchBase;
|
|
|
|
var int ActualDamage;
|
|
var Pawn Victim;
|
|
var ICCME_Stats_Player_DeathMatch VictimStats;
|
|
var Pawn InstigatedBy;
|
|
var ICCME_Stats_Player_DeathMatch InstigatorStats;
|
|
var Vector HitLocation;
|
|
var Vector Momentum;
|
|
var name DamageType;
|
|
|
|
function doLog()
|
|
{
|
|
super.doLog();
|
|
log("ActualDamage:"@ActualDamage);
|
|
log("Victim:"@Victim);
|
|
log("VictimStats:"@VictimStats);
|
|
log("InstigatedBy:"@InstigatedBy);
|
|
log("InstigatorStats:"@InstigatorStats);
|
|
log("HitLocation:"@HitLocation);
|
|
log("Momentum:"@Momentum);
|
|
log("DamageType:"@DamageType);
|
|
} |