Back to index...

NameTypeDeprecatedSecureDescription
Event.Combat.DamageSignals damage done to a unit. All units referenced by this event will be accessible within this ...
Event.Combat.DeathSignals the death of a unit. All units referenced by this event will be accessible within this ev...
Event.Combat.DodgeSignals a unit dodging an ability. All units referenced by this event will be accessible within t...
Event.Combat.HealSignals healing done to a unit. All units referenced by this event will be accessible within this...
Event.Combat.ImmuneSignals a unit resisting an ability through immunity. All units referenced by this event will be ...
Event.Combat.MissSignals an ability's effect missing a unit. All units referenced by this event will be accessible...
Event.Combat.ParrydeprecatedSignals a unit parrying an ability. All units referenced by this event will be accessible within ...
Event.Combat.ResistSignals a unit resisting an ability. All units referenced by this event will be accessible within...

Event.Combat.Damage

Signals damage done to a unit. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Damage(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
crit Whether this was the result of a critical hit.
damage The amount of damage actually done.
damageAbsorbed The amount of damage absorbed.
damageBlocked The amount of damage blocked.
damageIntercepted The amount of damage intercepted.
damageModified The amount of damage modified.
overkill The amount of overkill done.
target The unit ID for the target.
targetName The name of the target, if available.
type The damage type. Values include "life", "death", "air", "earth", "fire", "water".

Event.Combat.Death

Signals the death of a unit. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Death(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Dodge

Signals a unit dodging an ability. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Dodge(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Heal

Signals healing done to a unit. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Heal(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
crit Whether this was the result of a critical hit.
heal The amount healed.
overheal The amount of healing past maximum health wasted.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Immune

Signals a unit resisting an ability through immunity. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Immune(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Miss

Signals an ability's effect missing a unit. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Miss(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Parry

Signals a unit parrying an ability. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Parry(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
deprecated
standard
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Event.Combat.Resist

Signals a unit resisting an ability. All units referenced by this event will be accessible within this event's handlers.

Usage:

Event.Combat.Resist(info)
ParameterTypeDatatypeDescription
infoparametervariantDetailed information table about this event, containing several named parameters.
members
ability The ability ID for the ability used, if available.
abilityName The name of the ability used.
caster The unit ID for this event's initiator, if one exists.
casterName The name of this event's initiator, if available.
target The unit ID for the target.
targetName The name of the target, if available.

Back to index...