diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2010-12-31 01:20:51 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2010-12-31 01:20:51 +0100 |
commit | d21d470338b6ad5f6d9d540cb61212a4c3bfb064 (patch) | |
tree | 91cae02086fb94b5c13b4f40871f5882392c7f46 /npc/031-3_Cave/labyrinth.txt | |
parent | 8fbae2c5efa71fa0efd332a4cf71204c32236b78 (diff) | |
download | serverdata-d21d470338b6ad5f6d9d540cb61212a4c3bfb064.tar.gz serverdata-d21d470338b6ad5f6d9d540cb61212a4c3bfb064.tar.bz2 serverdata-d21d470338b6ad5f6d9d540cb61212a4c3bfb064.tar.xz serverdata-d21d470338b6ad5f6d9d540cb61212a4c3bfb064.zip |
Rescue Cindy quest:
- reward fix in Cindy
- blocking the warp of the fight cave during battle
- changing yeti stats for next test
Diffstat (limited to 'npc/031-3_Cave/labyrinth.txt')
-rwxr-xr-x | npc/031-3_Cave/labyrinth.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/031-3_Cave/labyrinth.txt b/npc/031-3_Cave/labyrinth.txt index 89a0623a..a73085e3 100755 --- a/npc/031-3_Cave/labyrinth.txt +++ b/npc/031-3_Cave/labyrinth.txt @@ -264,10 +264,18 @@ } 031-3.gat,120,81,0 script #ChristmasBarrier 127,1,1,{ + if ($@FIGHT_YETI_STATUS == 1) goto L_Block; warp "031-3.gat", 46, 27; + end; +L_Block: + message strcharinfo(0), "Some force seems to be blocking you from exiting."; end; } 031-3.gat,46,24,0 script #ChristmasBarrier 127,1,1,{ +if ($@FIGHT_YETI_STATUS == 1) goto L_Blocked; warp "031-3.gat", 120, 79; + end; +L_Blocked: + message strcharinfo(0), "Some force seems to be blocking you from entering."; end; } |