summaryrefslogtreecommitdiff
path: root/world/map/npc/017-4
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2013-06-09 19:43:00 +0200
committerJessica Tölke <jtoelke@mail.upb.de>2013-06-09 19:43:00 +0200
commiteab663dff8d2d0fb9506a373238c8ee26115da22 (patch)
tree4038fc51dd78125be43155811592ca324def3cc7 /world/map/npc/017-4
parent7006007a2338d97bbbe071eb5c83a6ca2a01c03a (diff)
downloadserverdata-eab663dff8d2d0fb9506a373238c8ee26115da22.tar.gz
serverdata-eab663dff8d2d0fb9506a373238c8ee26115da22.tar.bz2
serverdata-eab663dff8d2d0fb9506a373238c8ee26115da22.tar.xz
serverdata-eab663dff8d2d0fb9506a373238c8ee26115da22.zip
Add debug npc.
Diffstat (limited to 'world/map/npc/017-4')
-rw-r--r--world/map/npc/017-4/waric.txt28
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";
+}