mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-25 21:02:26 +00:00
Updated Lua Parser (markdown)
parent
e83a948345
commit
8c436ebb48
@ -165,6 +165,19 @@ Note:
|
|||||||
> ```
|
> ```
|
||||||
> Returning a non-zero value from this function will cancel the death
|
> Returning a non-zero value from this function will cancel the death
|
||||||
|
|
||||||
|
* event_death_complete
|
||||||
|
> Triggered when the npc dies and the death is complete.
|
||||||
|
> Passes an event table as an argument:
|
||||||
|
> ```
|
||||||
|
> {
|
||||||
|
> NPC self;
|
||||||
|
> Mob other;
|
||||||
|
> Integer damage;
|
||||||
|
> Spell spell;
|
||||||
|
> Integer skill_id;
|
||||||
|
> }
|
||||||
|
> ```
|
||||||
|
|
||||||
* event_spawn
|
* event_spawn
|
||||||
> Triggered when the npc spawns for the first time.
|
> Triggered when the npc spawns for the first time.
|
||||||
> Passes an event table as an argument:
|
> Passes an event table as an argument:
|
||||||
@ -411,6 +424,19 @@ Note:
|
|||||||
> ```
|
> ```
|
||||||
> Returning a non-zero value will cancel the death.
|
> Returning a non-zero value will cancel the death.
|
||||||
|
|
||||||
|
* event_death_complete
|
||||||
|
> Triggered when a client dies and the death is complete.
|
||||||
|
> Passes an event table as an argument:
|
||||||
|
> ```
|
||||||
|
> {
|
||||||
|
> Client self;
|
||||||
|
> Mob other;
|
||||||
|
> Integer damage;
|
||||||
|
> Spell spell;
|
||||||
|
> Integer skill;
|
||||||
|
> }
|
||||||
|
> ```
|
||||||
|
|
||||||
* event_timer
|
* event_timer
|
||||||
> Triggered when a timer attached to this client expires.
|
> Triggered when a timer attached to this client expires.
|
||||||
> Passes an event table as an argument:
|
> Passes an event table as an argument:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user