summaryrefslogtreecommitdiff
path: root/npc/026-2/door.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/026-2/door.txt')
-rwxr-xr-xnpc/026-2/door.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/026-2/door.txt b/npc/026-2/door.txt
new file mode 100755
index 00000000..7a9ad2bd
--- /dev/null
+++ b/npc/026-2/door.txt
@@ -0,0 +1,20 @@
+026-2,77,92,0 script #DoorIn NPC45,0,0,{
+ @Graveyard_Inn_MASK = NIBBLE_0_MASK;
+ @Graveyard_Inn_SHIFT = NIBBLE_0_SHIFT;
+
+ @reid = ((QUEST_Graveyard_Inn & @Graveyard_Inn_MASK) >> @Graveyard_Inn_SHIFT);
+
+ if (@reid >= 6) goto L_Warp;
+ message strcharinfo(0), "The door is locked.";
+ end;
+
+L_Warp:
+ warp "026-2", 77, 89;
+ @reid = 0;
+ end;
+}
+
+026-2,77,90,0 script #DoorOut-gyinn NPC45,0,0,{
+ warp "026-2", 77, 93;
+ end;
+}