Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
time_out.c
Go to the documentation of this file.
1#include "common.h"
2#include "script_api/battle.h"
3#include "sprite/npc/BattleKlevar.h"
4#include "sprite/player.h"
5
6#define NAMESPACE battle_move_time_out
7
9
15 Wait(16)
18 PlayEffect(EFFECT_STOP_WATCH, 0, 0, 0, 0, Float(1.0), 200, 0)
20 Wait(200)
22 Label(0)
24 Call(ItemCheckHit, LVar0, 0, 0, 0, 0)
26 Goto(1)
27 EndIf
29 Wait(5)
30 Label(1)
33 Goto(0)
34 EndIf
35 Wait(5)
39 Return
40 End
41};
BSS s32 PopupMenu_SelectedIndex
Bytecode EvtScript[]
@ BS_FLAGS1_TRIGGER_EVENTS
Definition enums.h:3608
@ ITER_NO_MORE
Definition enums.h:2063
@ ITER_NEXT
Definition enums.h:2058
@ HIT_RESULT_MISS
Definition enums.h:1982
@ BTL_CAM_VIEW_ENEMIES
Definition enums.h:4410
@ NPC_BTL_SPIRIT
Definition enums.h:2517
@ STATUS_FLAG_STOP
Definition enums.h:2855
@ SOUND_TIME_OUT
Definition enums.h:970
@ ACTOR_PLAYER
Definition enums.h:2118
@ ACTOR_SELF
Definition enums.h:2117
@ DAMAGE_TYPE_STATUS_ALWAYS_HITS
Definition enums.h:2914
@ DAMAGE_TYPE_NO_CONTACT
Definition enums.h:2912
@ DAMAGE_TYPE_MULTIPLE_POPUPS
Definition enums.h:2913
ApiStatus PlaySound(Evt *script, b32 isInitialCall)
ApiStatus SetNpcAnimation(Evt *script, b32 isInitialCall)
#define IfNe(LVAR, RVAR)
Marks the beginning of an if statement that only executes if LVAR != RVAR.
Definition macros.h:273
#define End
Signals the end of EVT script data. A script missing this will likely crash on load.
Definition macros.h:214
#define Goto(LABEL_ID)
Moves execution to the given label.
Definition macros.h:233
#define Float(DOUBLE)
Definition macros.h:52
#define Label(LABEL_ID)
Marks this point in the script as a Goto target.
Definition macros.h:228
#define EndIf
Marks the end of an if statement or an else block.
Definition macros.h:299
#define ExecWait(EVT_SOURCE)
Launches a new child thread.
Definition macros.h:476
#define DMG_STATUS_KEY(typeFlag, duration, chance)
Definition macros.h:236
#define Wait(NUM_FRAMES)
Blocks for the given number of frames.
Definition macros.h:255
#define PlayEffect(args...)
Definition macros.h:811
#define IfEq(LVAR, RVAR)
Marks the beginning of an if statement that only executes if LVAR == RVAR.
Definition macros.h:270
#define Call(FUNC, ARGS...)
Calls a given C EVT API function with any number of arguments.
Definition macros.h:577
#define LVar0
Definition macros.h:149
#define SetConst(VAR, CONST)
Sets the given variable to a given value, skipping the evt_get_variable call.
Definition macros.h:371
#define Return
Kills the current EVT thread.
Definition macros.h:218