summaryrefslogtreecommitdiff
path: root/world/map/npc/042-2/magic_basement.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/042-2/magic_basement.txt')
-rw-r--r--world/map/npc/042-2/magic_basement.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/world/map/npc/042-2/magic_basement.txt b/world/map/npc/042-2/magic_basement.txt
new file mode 100644
index 00000000..2f278a5a
--- /dev/null
+++ b/world/map/npc/042-2/magic_basement.txt
@@ -0,0 +1,21 @@
+//
+// Author: Wushin
+
+042-2.gat,103,56,0|script|#MagicBasement|400,0,0,
+{
+ callfunc "MorganState";
+ if (@morgan < 4)
+ goto L_Close;
+ mes "Descend into the basement?";
+ next;
+ menu
+ "Yes.", L_MagicBase,
+ "Nevermind.", L_Close;
+
+L_MagicBase:
+ warp "042-3",24,21;
+ goto L_Close;
+
+L_Close:
+ close;
+}