diff options
author | Wushin <pasekei@gmail.com> | 2015-02-08 14:28:19 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-02-08 14:28:19 -0600 |
commit | 30004d4a12f321a69f1ee2933dcc485e0b01d12b (patch) | |
tree | 70f80aa9abc671b95d7059c20e2993adbe777467 | |
parent | bf40331d427321b397c73828b1a54eb8199fb9ac (diff) | |
parent | 7c74060ccc27e5d0561a18de4d6b81bec636b604 (diff) | |
download | serverdata-30004d4a12f321a69f1ee2933dcc485e0b01d12b.tar.gz serverdata-30004d4a12f321a69f1ee2933dcc485e0b01d12b.tar.bz2 serverdata-30004d4a12f321a69f1ee2933dcc485e0b01d12b.tar.xz serverdata-30004d4a12f321a69f1ee2933dcc485e0b01d12b.zip |
Merge pull request #277 from mekolat/orum
do not show barrier message when quest done
-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; |