diff options
author | camthesaxman <cameronghall@cox.net> | 2017-10-01 12:21:52 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-10-01 12:21:52 -0500 |
commit | 89092b609a9af15a35b0151442e9881aeab28708 (patch) | |
tree | c73b3374ea61d91bbb8d2c528df267137cf2c58f /asm/macros | |
parent | 639493e0ee82d173e58d9a791b37ab08106e16fa (diff) |
fix more command names
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index c313bf44f..ffd1b9f07 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -1046,31 +1046,31 @@ .2byte \word .endm - .macro lighten byte + .macro animdarklevel byte .byte 0x9a .byte \byte .endm - .macro message2 pointer + .macro messageautoscroll pointer .byte 0x9b .4byte \pointer .endm @ Executes the specified field move animation. - .macro doanimation animation + .macro dofieldeffect animation .byte 0x9c .2byte \animation .endm @ Tells the game which party Pokmon to use for the next field move animation. - .macro setanimation animation, slot + .macro setfieldeffect animation, slot .byte 0x9d .byte \animation .2byte \slot .endm @ Blocks script execution until all playing field move animations complete. - .macro checkanimation animation + .macro waitfieldeffect animation .byte 0x9e .2byte \animation .endm @@ -1082,12 +1082,12 @@ .endm @ Checks the player's gender. If male, then 0x0000 is stored in variable 0x800D (LASTRESULT). If female, then 0x0001 is stored in LASTRESULT. - .macro checkgender + .macro checkplayergender .byte 0xa0 .endm @ Plays the specified (species) Pokmon's cry. You can use waitcry to block script execution until the sound finishes. - .macro pokecry species, effect + .macro playpokecry species, effect .byte 0xa1 .2byte \species .2byte \effect |