diff options
Diffstat (limited to 'world/map/npc/017-4')
-rw-r--r-- | world/map/npc/017-4/waric.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/world/map/npc/017-4/waric.txt b/world/map/npc/017-4/waric.txt index a1881985..b53d4afe 100644 --- a/world/map/npc/017-4/waric.txt +++ b/world/map/npc/017-4/waric.txt @@ -22,3 +22,31 @@ L_Spells: L_Close: close; } + +017-1.gat,74,32,0|script|DebugFlowerP|153,{ + mes "Debug options for Orum's quest:"; + menu + "Candle Helmet done.", L_CandleHelmet, + "Input quest variable.", L_Var, + "Reset quest.", L_Reset, + "Nevermind.", L_Close; + +L_CandleHelmet: + set OrumQuest, 14; + goto L_Close; + +L_Var: + input OrumQuest; + goto L_Close; + +L_Reset: + set OrumQuest, 0; + goto L_Close; + +L_Close: + close; + +OnInit: + if (!debug) + disablenpc "DebugFlowerP"; +} |