diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-14 21:27:45 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-15 16:00:45 -0500 |
commit | 04d176334ad590d3462e3c1eb75c1313705ae183 (patch) | |
tree | 865ca807901bf57e63523b19f2d535c7ef391f89 /asm/macros | |
parent | 2f81b4a204d051aeb88580dc63381011ec49fcbb (diff) |
Document some Quest Log
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc index ab7b06932..1be118154 100644 --- a/asm/macros/event.inc +++ b/asm/macros/event.inc @@ -1627,9 +1627,9 @@ call EventScript_SetGymTrainers .endm - @ Appears frequently at start of NPC scripts. Should be used once named/understood - .macro unk_questlog - special sub_8110AB4 + @ Jumps to dest if the Quest Log is currently showing playback scenes (dest is usually a release/end) + .macro goto_if_questlog dest:req + special Special_GetQuestLogState compare VAR_RESULT, 2 - goto_if_eq EventScript_1A7AE0 + goto_if_eq \dest .endm |