mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 23:18:36 -05:00
* Coins scr commands * Game Corner messages * GoToIfCannotAddCoins macro * CheckMoney * Using GoToIfNotEnoughMoney * Most of Game Corner script documented * Some slot machine documentation * AddToGameRecord * Last scr commands but 1 * Format * Fix typo
16 lines
508 B
C
16 lines
508 B
C
#ifndef POKEPLATINUM_SCRCMD_MONEY_H
|
|
#define POKEPLATINUM_SCRCMD_MONEY_H
|
|
|
|
#include "field_script_context.h"
|
|
|
|
BOOL ScrCmd_GiveMoney(ScriptContext *ctx);
|
|
BOOL ScrCmd_RemoveMoney(ScriptContext *ctx);
|
|
BOOL ScrCmd_RemoveMoney2(ScriptContext *ctx);
|
|
BOOL ScrCmd_CheckMoney(ScriptContext *ctx);
|
|
BOOL ScrCmd_CheckMoney2(ScriptContext *ctx);
|
|
BOOL ScrCmd_ShowMoney(ScriptContext *ctx);
|
|
BOOL ScrCmd_HideMoney(ScriptContext *ctx);
|
|
BOOL ScrCmd_UpdateMoneyDisplay(ScriptContext *ctx);
|
|
|
|
#endif // POKEPLATINUM_SCRCMD_MONEY_H
|