diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-16 17:09:33 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-08-16 17:09:33 +0000 |
commit | 3f3b01c7d55277f4ee6ebbe04eea3c021b027d61 (patch) | |
tree | 58af6aba38628336d595dd2bd8670a32b83e6410 /npc/quests/quests_13_1.txt | |
parent | a4795646cf4a042cd21a982f0d85e16abc6cc1da (diff) | |
download | hercules-3f3b01c7d55277f4ee6ebbe04eea3c021b027d61.tar.gz hercules-3f3b01c7d55277f4ee6ebbe04eea3c021b027d61.tar.bz2 hercules-3f3b01c7d55277f4ee6ebbe04eea3c021b027d61.tar.xz hercules-3f3b01c7d55277f4ee6ebbe04eea3c021b027d61.zip |
* Fixed Flavius only needing 1 person on either side to start.
* Updated the level 4 weapon quest to aegis conversion.
* Corrected a variable typo in the dts_warper script.
* Fixed a script hang in Hugel Temple Excavation quest.
* Fixed Cat Hand Agent checks, and mysterious rock#31.
* Corrected the two hour time limit for Sealed Shrine.
* Corrected a few other minor issues in Sealed Shrine.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14376 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_13_1.txt')
-rw-r--r-- | npc/quests/quests_13_1.txt | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/npc/quests/quests_13_1.txt b/npc/quests/quests_13_1.txt index 1c758b664..1171e9c5a 100644 --- a/npc/quests/quests_13_1.txt +++ b/npc/quests/quests_13_1.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.5 +//= 1.6 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -32,6 +32,7 @@ //= Cat Hand Agents no longer ignore you with 300+ points. //= 1.4 Changed killmonsterall -> killmonster. (bugreport:4131) //= 1.5 Removed a 'close;' which should have been 'close2'. (bugreport:4276) +//= 1.6 Fixed check in cat hand agent. //============================================================ // Onward to the New World @@ -8945,7 +8946,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ mes "40 or more Cat Trading Points."; mes "Please remember, you can't come back easily once you move to Midgard."; next; - if ((ep13_yong1 > 39) && (ep13_yong1 < 49)) { + if ((ep13_yong1 > 39) && (ep13_yong1 <= 49)) { switch(select("Prontera -> 5500z:Cancel")) { case 1: if (Zeny >= 5500) { @@ -8961,7 +8962,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ break; } } - else if ((ep13_yong1 > 49) && (ep13_yong1 < 59)) { + else if ((ep13_yong1 > 49) && (ep13_yong1 < 60)) { switch(select("Alberta -> 5500z:Prontera -> 5500z:Cancel")) { case 1: if (Zeny >= 5500) { @@ -8987,7 +8988,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ break; } } - else if ((ep13_yong1 > 59) && (ep13_yong1 < 69)) { + else if ((ep13_yong1 > 59) && (ep13_yong1 < 70)) { switch(select("Alberta -> 5025z:Prontera -> 5025z:Izlude -> 5025z:Cancel")) { case 1: if (Zeny >= 5025) { @@ -9023,7 +9024,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ break; } } - else if ((ep13_yong1 > 69) && (ep13_yong1 < 79)) { + else if ((ep13_yong1 > 69) && (ep13_yong1 < 80)) { switch(select("Alberta -> 5025z:Prontera -> 5025z:Izlude -> 5025z:Geffen -> 5025z:Cancel")) { case 1: if (Zeny >= 5025) { @@ -9069,7 +9070,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ break; } } - else if ((ep13_yong1 > 79) && (ep13_yong1 < 89)) { + else if ((ep13_yong1 > 79) && (ep13_yong1 < 90)) { switch(select("Alberta -> 4765z:Prontera -> 4765z:Izlude -> 4765z:Geffen -> 4765z:Payon -> 4765z:Cancel")) { case 1: if (Zeny >= 4765) { @@ -9125,7 +9126,7 @@ mid_camp,62,125,4 script Cat Hand Agent 421,{ break; } } - else if ((ep13_yong1 > 89) && (ep13_yong1 < 99)) { + else if ((ep13_yong1 > 89) && (ep13_yong1 < 100)) { switch(select("Alberta -> 4765z:Prontera -> 4765z:Izlude -> 4765z:Geffen -> 4765z:Payon -> 4765z:Morroc -> 4765z:Cancel")) { case 1: if (Zeny >= 4765) { |