diff options
Diffstat (limited to 'npc/003-1/sewer.txt')
-rw-r--r-- | npc/003-1/sewer.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/npc/003-1/sewer.txt b/npc/003-1/sewer.txt index a0fe188bf..408347145 100644 --- a/npc/003-1/sewer.txt +++ b/npc/003-1/sewer.txt @@ -6,7 +6,10 @@ // TE: Tulimshar, East 003-1,56,84,0 script #Sewer-TW NPC_NO_SPRITE,{ - if (getq(TulimsharQuest_Sewers) == 0) end; + if (getq(TulimsharQuest_Sewers) == 0) { + dispbottom l("The sewer mouth is locked."); + end; + } if (BaseLevel < 25) end; mesc l("Descend into Tulimshar sewers?"); @@ -20,7 +23,10 @@ } 003-1,115,111,0 script #Sewer-TE NPC_NO_SPRITE,{ - if (getq(TulimsharQuest_Sewers) == 0) end; + if (getq(TulimsharQuest_Sewers) == 0) { + dispbottom l("The sewer mouth is locked."); + end; + } if (BaseLevel < 25) end; mesc l("Descend into Tulimshar sewers?"); |