diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-29 00:57:28 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-29 00:57:28 -0400 |
commit | 5145d69506ddcd93f63b45fa9688e59b5f49549e (patch) | |
tree | c3df454aaeac34323c1b17550baa842cdbaef8c6 | |
parent | 8935e6f1ca2e00da6800c341ecfd74553dc1b1f4 (diff) |
; entries correspond to PLAYEREVENT_* constants
-rw-r--r-- | engine/overworld/events.asm | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/engine/overworld/events.asm b/engine/overworld/events.asm index e4defbc2b..e961e092b 100644 --- a/engine/overworld/events.asm +++ b/engine/overworld/events.asm @@ -972,16 +972,17 @@ DoPlayerEvent: ret PlayerEventScriptPointers: - dba Invalid_0x96c2d ; 0 - dba SeenByTrainerScript ; 1 - dba TalkToTrainerScript ; 2 - dba FindItemInBallScript ; 3 - dba EdgeWarpScript ; 4 - dba WarpToNewMapScript ; 5 - dba FallIntoMapScript ; 6 - dba Script_OverworldWhiteout ; 7 - dba HatchEggScript ; 8 - dba ChangeDirectionScript ; 9 +; entries correspond to PLAYEREVENT_* constants + dba Invalid_0x96c2d ; PLAYEREVENT_NONE + dba SeenByTrainerScript ; PLAYEREVENT_SEENBYTRAINER + dba TalkToTrainerScript ; PLAYEREVENT_TALKTOTRAINER + dba FindItemInBallScript ; PLAYEREVENT_ITEMBALL + dba EdgeWarpScript ; PLAYEREVENT_CONNECTION + dba WarpToNewMapScript ; PLAYEREVENT_WARP + dba FallIntoMapScript ; PLAYEREVENT_FALL + dba Script_OverworldWhiteout ; PLAYEREVENT_WHITEOUT + dba HatchEggScript ; PLAYEREVENT_HATCH + dba ChangeDirectionScript ; PLAYEREVENT_JOYCHANGEFACING dba Invalid_0x96c2d ; 10 Invalid_0x96c2d: |