Method | Description | |
---|---|---|
Init ( ) : bool |
Called when the script is initially created.
|
|
OnBoss ( |
Called when the boss door opens.
|
|
OnBossDeath ( |
Called when one of the boss monsters dies.
|
|
OnCleared ( |
Called when the boss was killed.
|
|
OnCreation ( |
Called when the dungeon was just created.
|
|
OnLeftEarly ( |
Called when a player leaves a dungeon via the first statue, logging out, or similar.
|
|
OnPartyEntered ( |
Called once, when the entire initial party has entered the dungeon's lobby.
|
|
OnPlayerEntered ( |
Called whenever a player enters the dungeon's lobby.
|
|
OnPlayerEnteredFloor ( |
Called when a creature enters a floor region. The floor ids start at 1.
|
|
OnRpCharacterCreated ( |
Called after an RP character was created, but before the player is warped into the dungeon. Allows changes to the RP character, which are created based on actor data. |
|
OnSectionCleared ( |
Called when all puzzles of a section have been solved.
|
|
Route ( |
Changes dungeonName depending on the item, returns true if routing was successful, if not, the dungeon was invalid.
|
public OnBoss ( |
||
dungeon | ||
return | void |
public OnBossDeath ( |
||
dungeon | ||
deadBoss | ||
killer | ||
return | void |
public OnCleared ( |
||
dungeon | ||
return | void |
public OnCreation ( |
||
dungeon | ||
return | void |
public OnLeftEarly ( |
||
dungeon | ||
creature | ||
return | void |
public OnPartyEntered ( |
||
dungeon | ||
creature | The last creature that entered. | |
return | void |
public OnPlayerEntered ( |
||
dungeon | ||
creature | The creature that entered. | |
return | void |
public OnPlayerEnteredFloor ( |
||
dungeon | ||
creature | ||
floor | int | |
return | void |
public OnRpCharacterCreated ( |
||
dungeon | ||
rpCharacter | ||
return | void |
public OnSectionCleared ( |
||
dungeon | ||
floor | int | The floor, starting at 1 (lobby is ignored). |
section | int | The section, starting at 1. |
return | void |
public Route ( |
||
creature | ||
item | Item | |
dungeonName | string | |
return | bool |