diff options
author | camthesaxman <cameronghall@cox.net> | 2017-10-01 12:07:22 -0500 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-10-01 12:07:22 -0500 |
commit | 639493e0ee82d173e58d9a791b37ab08106e16fa (patch) | |
tree | 11c35bf02ad413f1c0d3702592a08e3acd93012e /asm/macros/event.inc | |
parent | 6ca1e8747d0278eb5a8e5d7f5ec74801a3e1aded (diff) |
fix more command names
Diffstat (limited to 'asm/macros/event.inc')
-rw-r--r-- | asm/macros/event.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index bad196e93..c313bf44f 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -989,7 +989,7 @@ .endm @ If check is 0x00, this command subtracts value from the player's money. - .macro paymoney value, check + .macro takemoney value, check .byte 0x91 .4byte \value .byte \check @@ -1003,28 +1003,28 @@ .endm @ Spawns a secondary box showing how much money the player has. - .macro showmoney X, Y + .macro showmoneybox X, Y .byte 0x93 .byte \X .byte \Y .endm @ Hides the secondary box spawned by showmoney. - .macro hidemoney X, Y + .macro hidemoneybox X, Y .byte 0x94 .byte \X .byte \Y .endm @ Updates the secondary box spawned by showmoney. (What does it do with its arguments?) - .macro updatemoney X, Y + .macro updatemoneybox X, Y .byte 0x95 .byte \X .byte \Y .endm @ In FireRed, this command is a nop. - .macro event_96 word + .macro getpricereduction word .byte 0x96 .2byte \word .endm @@ -1041,7 +1041,7 @@ .byte \byte2 .endm - .macro darken word + .macro setdarklevel word .byte 0x99 .2byte \word .endm |