diff options
author | mekolat <mekolat@gmail.com> | 2015-02-03 16:23:27 -0500 |
---|---|---|
committer | mekolat <mekolat@gmail.com> | 2015-02-03 16:23:27 -0500 |
commit | 7c74060ccc27e5d0561a18de4d6b81bec636b604 (patch) | |
tree | acaf0ad84e0d64b92bad398fe6dda0b2122c4319 /world/map | |
parent | 63f0bbb27cb34f03eee88a6264c1c97e434d180d (diff) | |
download | serverdata-7c74060ccc27e5d0561a18de4d6b81bec636b604.tar.gz serverdata-7c74060ccc27e5d0561a18de4d6b81bec636b604.tar.bz2 serverdata-7c74060ccc27e5d0561a18de4d6b81bec636b604.tar.xz serverdata-7c74060ccc27e5d0561a18de4d6b81bec636b604.zip |
do not show barrier message when quest done
Diffstat (limited to 'world/map')
-rw-r--r-- | world/map/npc/009-4/barriers.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/world/map/npc/009-4/barriers.txt b/world/map/npc/009-4/barriers.txt index adaa384e..aed35d96 100644 --- a/world/map/npc/009-4/barriers.txt +++ b/world/map/npc/009-4/barriers.txt @@ -55,7 +55,7 @@ L_Error2: L_Started: message strcharinfo(0), "The torches dim as you approach, granting you passage."; set OrumQuest, 3; - close; + end; } 009-4,37,120,0|script|#OrumCaveStartBarrier|127,0,0 @@ -68,16 +68,17 @@ L_Started: // First Barrier 009-4,57,29,0|script|#OrumCaveFirstBarrier|127,0,0 { - if (OrumQuest >= 5) close; + if (OrumQuest >= 5) end; message strcharinfo(0), "Nothing seems to happen as you enter this room. The barrier must need both of its torches to function properly."; set OrumQuest, 5; - close; + end; } // Second Barrier 009-4,61,55,0|script|#OrumCaveSecondMessage|127,0,0 { + if (OrumQuest >= 9) end; if (OrumQuest == 3) set OrumQuest, 4; set @Barrier, 0; @@ -113,6 +114,7 @@ L_Advance_Quest: // Third Barrier 009-4,24,65,0|script|#OrumCaveThirdMessage|127,0,0 { + if (OrumQuest >= 10) end; if (OrumQuest == 3) set OrumQuest, 4; if (OrumQuest > 8 && @Torch1Color == @firstColor && @Torch2Color == @secondColor) goto L_Allow_Third_Passage; |