diff options
Diffstat (limited to 'world/map/npc/026-2/door.txt')
-rw-r--r-- | world/map/npc/026-2/door.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/world/map/npc/026-2/door.txt b/world/map/npc/026-2/door.txt new file mode 100644 index 00000000..12429a41 --- /dev/null +++ b/world/map/npc/026-2/door.txt @@ -0,0 +1,23 @@ +026-2,77,92,0|script|#DoorIn|45,0,0 +{ + set @Graveyard_Inn_MASK, NIBBLE_0_MASK; + set @Graveyard_Inn_SHIFT, NIBBLE_0_SHIFT; + + set @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; + set @reid, 0; + end; +} + +// TODO replace this with a plain warp +026-2,77,90,0|script|#DoorOut-gyinn|45,0,0 +{ + warp "026-2", 77, 93; + end; +} |