diff options
author | daegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-08 01:39:58 +0000 |
---|---|---|
committer | daegaladh <daegaladh@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-08 01:39:58 +0000 |
commit | 3fb71579d0c5de4dc2afe52acab0671651b52810 (patch) | |
tree | 0dfdf39d51349c84af029290537127a3b1c44857 /npc/quests/quests_13_2.txt | |
parent | 177fa7f32a6171967cd88080ca06adeaddeb967d (diff) | |
download | hercules-3fb71579d0c5de4dc2afe52acab0671651b52810.tar.gz hercules-3fb71579d0c5de4dc2afe52acab0671651b52810.tar.bz2 hercules-3fb71579d0c5de4dc2afe52acab0671651b52810.tar.xz hercules-3fb71579d0c5de4dc2afe52acab0671651b52810.zip |
Some bugfixes in ep13 quests.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16601 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_13_2.txt')
-rw-r--r-- | npc/quests/quests_13_2.txt | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/npc/quests/quests_13_2.txt b/npc/quests/quests_13_2.txt index f2c226785..418efe493 100644 --- a/npc/quests/quests_13_2.txt +++ b/npc/quests/quests_13_2.txt @@ -1,4 +1,4 @@ -//===== rAthena Script ======================================= +//===== rAthena Script ======================================= //= Collection of episode 13.2 quests. //===== By: ================================================== //= L0ne_W0lf @@ -389,21 +389,22 @@ function Catwarp { mes "[Cat Hand Agent]"; mes "Don't play with money."; close; } + close2; set Zeny, Zeny-getarg(0); switch(getarg(1)) { - case 1: warp "alberta",117,56; close; - case 2: warp "prontera",116,72; close; - case 3: warp "izlude",91,105; close; - case 4: warp "geffen",120,39; close; - case 5: warp "payon",161,58; close; - case 6: warp "morocc",156,46; close; - case 7: warp "aldebaran",168,112; close; - case 8: warp "yuno",158,125; close; - case 9: warp "einbroch",158,301; close; - case 10: warp "lighthalzen",163,64; close; - case 11: warp "spl_fild02",32,225; close; - case 12: warp "man_fild02",129,61; close; - case 13: warp "mid_camp",62,127; close; + case 1: warp "alberta",117,56; end; + case 2: warp "prontera",116,72; end; + case 3: warp "izlude",91,105; end; + case 4: warp "geffen",120,39; end; + case 5: warp "payon",161,58; end; + case 6: warp "morocc",156,46; end; + case 7: warp "aldebaran",168,112; end; + case 8: warp "yuno",158,125; end; + case 9: warp "einbroch",158,301; end; + case 10: warp "lighthalzen",163,64; end; + case 11: warp "spl_fild02",32,225; end; + case 12: warp "man_fild02",129,61; end; + case 13: warp "mid_camp",62,127; end; } } } |