diff options
author | Wushin <pasekei@gmail.com> | 2014-11-24 19:50:54 -0600 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2014-11-24 19:50:54 -0600 |
commit | 69e8ffdc649738f909b40fb76bc0f258a6948710 (patch) | |
tree | 373a42dbe6bdae7c3753b61ef4fe4a133e366b39 /world/map/npc/009-4/barriers.txt | |
parent | 49234000cbcd16cf5bab89790cc89c0a21f5b972 (diff) | |
parent | f1bd3bb5cad88368f4a0e8f1308c4747827d39b8 (diff) | |
download | serverdata-69e8ffdc649738f909b40fb76bc0f258a6948710.tar.gz serverdata-69e8ffdc649738f909b40fb76bc0f258a6948710.tar.bz2 serverdata-69e8ffdc649738f909b40fb76bc0f258a6948710.tar.xz serverdata-69e8ffdc649738f909b40fb76bc0f258a6948710.zip |
Merge pull request #213 from mekolat/orum-collision
Prevent crash in torch quest
Diffstat (limited to 'world/map/npc/009-4/barriers.txt')
-rw-r--r-- | world/map/npc/009-4/barriers.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/world/map/npc/009-4/barriers.txt b/world/map/npc/009-4/barriers.txt index 9e3e85b9..9e9ef7bc 100644 --- a/world/map/npc/009-4/barriers.txt +++ b/world/map/npc/009-4/barriers.txt @@ -81,11 +81,11 @@ L_Started: if (OrumQuest > 7 && @TorchColor == @BarrierColor) goto L_Allow_Second_Passage; - warp "009-4.gat", 61, 56; + warp "009-4.gat", 60, 56; mes "As you try to pass, the torches begin to flare and push you back. Perhaps there's a way to get past it."; mes ""; setarray @colors$,"transparent","red","dark orange","orange","light orange","yellow","light green","green","dark green","blue","dark purple","purple","light purple"; - mes "Looking closely between the two torches you can see the barrier has a " + @colors$[@BarrierColor] + " tint to it."; + mes "Looking closely between the two torches you can see the barrier has a ##B" + @colors$[@BarrierColor] + "##b tint to it."; close; L_Allow_Second_Passage: @@ -126,11 +126,11 @@ L_Advance_Quest: if (OrumQuest > 8 && @Torch2Color == @firstColor && @Torch1Color == @secondColor) goto L_Allow_Third_Passage; - warp "009-4.gat", 24, 64; + warp "009-4.gat", 23, 64; mes "As you try to pass, the torches begin to flare and push you back. Perhaps there is a way to get past it."; mes ""; setarray @colors$,"transparent","red","dark orange","orange","light orange","yellow","light green","green","dark green","blue","dark purple","purple","light purple"; - mes "Looking closely between the two torches you can see the barrier has a " + @colors$[@BarrierColor] + " tint to it."; + mes "Looking closely between the two torches you can see the barrier has a ##B" + @colors$[@BarrierColor] + "##b tint to it."; close; L_Allow_Third_Passage: @@ -239,11 +239,11 @@ L_Advance_Quest: goto L_Deny_Final_Passage; L_Deny_Final_Passage: - warp "009-4.gat", 48, 36; + warp "009-4.gat", 47, 36; mes "As you try to pass, the torches begin to flare and push you back. Perhaps there is a way to get past it."; mes ""; setarray @colors$,"transparent","red","dark orange","orange","light orange","yellow","light green","green","dark green","blue","dark purple","purple","light purple"; - mes "Looking closely between the two torches you can see the barrier has a " + @colors$[@BarrierColor] + " tint to it."; + mes "Looking closely between the two torches you can see the barrier has a ##B" + @colors$[@BarrierColor] + "##b tint to it."; close; L_Allow_Final_Passage: |