Callbacks
Callbacks for lua
Scripts should return a table with the following functions. If the table contains one of the functions below, it will be registered as a callback and will be called at the appropriate time.
OnDraw(): void
void
Called when the game is drawing. Works only in the game. Recommended to use for drawing only.
OnFrame(): void
void
The same as OnDraw, but called in the menu too.
OnUpdate(): void
void
Called every game update. Works only in the game. Recommended to use for logic or rendering static interfaces.
OnUpdate(): void
void
Called every game update. Same as OnUpdate but as well called in the menu. Recommended to use for logic or rendering static interfaces.
OnEntityCreate(entity: Entity
): void
Entity
): void
entity
Entity
The entity that was created.
Called when a new entity is created.
OnEntityDestroy(entity: Entity
): void
Entity
): void
entity
Entity
The entity that was destroyed.
Called when an entity is destroyed.
OnModifierCreate(entity: NPC
, modifier: Modifier
): void
NPC
, modifier: Modifier
): void
entity
NPC
The entity that has the modifier.
modifier
Modifier
The modifier that was created.
Called when a modifier is created.
OnModifierDestroy(entity: NPC
, modifier: Modifier
): void
NPC
, modifier: Modifier
): void
entity
NPC
The entity that has the modifier.
modifier
Modifier
The modifier that was destroyed.
Called when a modifier is destroyed.
OnEntityHurt(data: table
): void
table
): void
data
table
The data about the event.
.source
Entity
The entity that caused the damage.
.target
Entity
The entity that was hurt.
.ability [?]
Ability
The ability that caused the damage.
.damage
number
The amount of damage.
Called when an entity is hurt.
OnEntityKilled(data: table
): void
table
): void
data
table
The data about the event.
.source
Entity
The entity that caused the kill.
.target
Entity
The entity that was killed.
.ability [?]
Ability
The ability that caused the kill.
Called when an entity is killed.
OnFireEventClient(data: table
): void
table
): void
data
table
The data about the event.
.name
string
The name of the event.
.event
Event
The event.
Called when a game event is fired.
OnUnitAnimation(data: table
): void
table
): void
data
table
The data about the event.
.unit
NPC
The unit that played the animation.
.sequenceVariant
number
The sequence variant.
.playbackRate
number
The playback rate.
.castpoint
number
The castpoint.
.type
integer
The type.
.activity
integer
The activity.
.sequence
integer
The sequence.
.sequenceName
string
The sequence name.
Called when a unit animation is played.
OnUnitAnimationEnd(data: table
): void
table
): void
data
table
The data about the event.
.unit
NPC
The unit that played the animation.
.snap
boolean
The snap.
Called when a unit animation ends.
OnProjectile(data: table
): void
table
): void
data
table
The data about the event.
.source
NPC
The source entity.
.target
NPC
The target entity.
.ability
Ability
The ability linked to the projectile.
.moveSpeed
integer
The move speed.
.sourceAttachment
integer
The source attachment.
.particleSystemHandle
userdata
The particle system handle.
.dodgeable
boolean
The dodgeable.
.isAttack
boolean
The is attack.
.expireTime
number
The expire time.
.maxImpactTime
number
The max impact time.
.launch_tick
integer
The tick the pojectile was launched.
.colorGemColor
integer
The color gem color.
.fullName
string
The full name of projectile.
.name
string
The short name of projectile.
.handle
integer
The handle of projectile.
.target_loc
Vector
The location of the target.
.original_move_speed
integer
The original move speed.
Called when new projectile is created.
OnProjectileLoc(data: table
): void
table
): void
data
table
The data about the event.
.target [?]
NPC
The source entity.
.sourceLoc
Vector
The source location.
.targetLoc
Vector
The target location.
.moveSpeed
integer
The move speed.
.original_move_speed
integer
The original move speed.
.particleSystemHandle
userdata
The particle system handle.
.dodgeable
boolean
The dodgeable.
.isAttack
boolean
The is attack.
.expireTime
number
The expire time.
.colorGemColor
integer
The color gem color.
.launchTick
integer
The launch tick.
.handle
integer
The handle of projectile.
.fullName
string
The full name of projectile.
.name
string
The short name of projectile.
Called when new projectile loc is created.
OnLinearProjectileCreate(data: table
): void
table
): void
data
table
The data about the event.
.source
NPC
The source entity.
.origin
Vector
The origin.
.velocity
Vector
The velocity.
.particleIndex
integer
The particle index.
.handle
integer
The handle of projectile.
.acceleration
Vector
The acceleration.
.maxSpeed
number
The max speed.
.fowRadius
number
The fow radius.
.distance
number
The distance.
.colorGemColor
integer
The color gem color.
.fullName
string
The full name of projectile.
.name
string
The short name of projectile.
Called when new linear projectile is created.
OnLinearProjectileDestroy(data: table
): void
table
): void
data
table
The data about the event.
.handle
integer
The handle of projectile.
Called when linear projectile is destroyed.
OnParticleCreate(data: table
): void
table
): void
data
table
The data about the event.
.index
integer
The index of particle.
.entity [?]
NPC
The entity.
.entity_id
integer
The entity id.
.entityForModifiers [?]
NPC
The entity for modifiers.
.entity_for_modifiers_id
integer
The entity for modifiers id.
.attachType
Enum.ParticleAttachment
The attach type.
.fullName
string
The full name of particle.
.name
string
The short name of particle.
.hash
integer
The hash of particle.
.particleNameIndex
integer
The particle name index.
Called when new particle is created.
OnParticleDestroy(data: table
): void
table
): void
data
table
The data about the event.
.index
integer
The index of particle.
.controlPoint
integer
The control point.
.position
Vector
The position.
Called when particle is updated.
OnParticleUpdateFallback(data: table
): void
table
): void
data
table
The data about the event.
.index
integer
The index of particle.
.controlPoint
integer
The control point.
.position
Vector
The position.
Called when particle is updated. Alternative version for some particles.
OnParticleUpdateEntity(data: table
): void
table
): void
data
table
The data about the event.
.index
integer
The index of particle.
.controlPoint
integer
The control point.
.entity
Entity
The entity.
.entIdx
integer
The entity id.
.attachType
Enum.ParticleAttachment
The attach type.
.attachmentName
string
The attachment name.
.position
Vector
The position.
.includeWearables
boolean
Include wearables.
Called when particle is updated on entity.
OnParticleDestroy(data: table
): void
table
): void
data
table
The data about the event.
.index
integer
The index of destroyed particle.
.destroyImmediately
boolean
Destroy immediately.
Called when particle is destroyed.
OnStartSound(data: table
): void
table
): void
data
table
The data about the event.
.source [?]
Entity
The source of sound.
.hash
integer
The hash of sound.
.guid
integer
The guid of sound.
.seed
integer
The seed of sound.
.name
string
The name of sound.
.position
Vector
The position of sound.
Called when sound is started.
OnChatEvent(data: table
): void
table
): void
data
table
The data about the event.
.type
integer
The type of chat event.
.value
integer
The value of chat event.
.value2
integer
The value2 of chat event.
.value3
integer
The value3 of chat event.
.playerid_1
integer
The playerid_1 of chat event.
.playerid_2
integer
The playerid_2 of chat event.
.playerid_3
integer
The playerid_3 of chat event.
.playerid_4
integer
The playerid_4 of chat event.
.playerid_5
integer
The playerid_5 of chat event.
.playerid_6
integer
The playerid_6 of chat event.
Called on chat event.
OnOverHeadEvent(data: table
): void
table
): void
data
table
- The table with the event info.
.event_type
Enum.OverHeadAlert
- The type of the event.
.player_source [?]
Player
- The player that caused the event.
.player_target [?]
Player
- The player targeted by the event.
.target_npc [?]
NPC
- The NPC targeted by the event.
.value
integer
- The value associated with the event.
Called on event above the hero's head.
OnUnitAddGesture(data: table
): void
table
): void
data
table
The data about the event.
.npc [?]
NPC
The unit that is added to a gesture.
.sequenceVariant
integer
The sequence variant.
.playbackRate
number
The playback rate.
.fadeIn
number
The fade in.
.fadeOut
number
The fade out.
.slot
integer
The slot.
.activity
integer
The activity.
.sequenceName
string
The sequence name.
Called when a unit is added to a gesture.
OnPrepareUnitOrders(data: table
): boolean
table
): boolean
data
table
The data about the event.
.player
Player
The player that issued the order.
.order
Enum.UnitOrder
The order type.
.target [?]
Entity
The target of the order.
.position
Vector
The position of the order.
.ability [?]
Ability
The ability of the order.
.orderIssuer
Enum.PlayerOrderIssuer
The order issuer.
.npc
NPC
The unit of the order.
.queue
boolean
If the order is queued.
.showEffects
boolean
The show effects of the order.
Called on every player order. Return false to prevent the order from being executed.
OnGCMessage(data: table
): boolean
table
): boolean
data
table
.msg_type
number
The message type.
.size
number
The size of the message.
.binary_buffer_send [?]
string
The binary buffer of the send message.
.binary_buffer_recv [?]
string
The binary buffer of the recieved message.
Called when a game coordinator protobuff message is received. Return false to prevent the message from being sent/recieved. For more look at GC table description.
Example
OnSendNetMessage(data: table
): boolean
table
): boolean
data
table
The data about the event.
.message_id
number
The message id.
.message_name
string
The message name.
.buffer
lightuserdata
The encoded buffer of the message.
.size
number
The size of the message.
Called when a net message is sent. Return false to prevent the message from being sent. See example
Example
OnReceivedNetMessage(data: table
): boolean
table
): boolean
data
table
The data about the event.
.message_id
number
The message id.
.message_name
string
The message name.
.buffer
lightuserdata
The encoded buffer of the message.
.size
number
The size of the message.
Called when a net message is received. Return false to prevent the message from being recieved
Example
OnSetDormant(npc: NPC
, type: Enum.DormancyType
): void
NPC
, type: Enum.DormancyType
): void
npc
NPC
The target npc.
type
Enum.DormancyType
The type of change.
Called on NPC dormancy state changed.
Last updated