diff options
Diffstat (limited to 'npc/032-3')
-rw-r--r-- | npc/032-3/_warps.txt | 2 | ||||
-rw-r--r-- | npc/032-3/episode.txt | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/npc/032-3/_warps.txt b/npc/032-3/_warps.txt index 2f7461a63..482e39cad 100644 --- a/npc/032-3/_warps.txt +++ b/npc/032-3/_warps.txt @@ -1,3 +1,3 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. // Map 032-3: Beasts Dungeon warps -032-3,121,102,0 warp #032-3_121_102 0,0,032-2,133,29 +032-3,121,102,0 warp #032-3_121_102 0,0,032-2,52,127 diff --git a/npc/032-3/episode.txt b/npc/032-3/episode.txt index 9134fb059..b249de298 100644 --- a/npc/032-3/episode.txt +++ b/npc/032-3/episode.txt @@ -4,3 +4,15 @@ // Description: // Part of the Doctor's Quest. +032-3,121,70,0 script #CryptEP NPC_HIDDEN,0,0,{ + end; +OnTouch: + .@q = (getq(LoFQuest_EPISODE) == 15 ? getq2(LoFQuest_EPISODE) : 99); + if (getq(LoFQuest_EPISODE) > 15 || .@q >= 2) + warp "032-4", 40, 74; + else + dispbottom l("This door is locked."); + end; +} + + |