diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-18 19:26:01 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-18 19:26:01 +0000 |
commit | d894d1627651d090b7dd81efc35872b5b970ad1e (patch) | |
tree | b66288586943d3a3b1b77dcea9bb477eb3ee00ad /npc/quests | |
parent | 6e9f95da3aa9b75d13ccd76a38b4628afc082d26 (diff) | |
download | hercules-d894d1627651d090b7dd81efc35872b5b970ad1e.tar.gz hercules-d894d1627651d090b7dd81efc35872b5b970ad1e.tar.bz2 hercules-d894d1627651d090b7dd81efc35872b5b970ad1e.tar.xz hercules-d894d1627651d090b7dd81efc35872b5b970ad1e.zip |
*Slew of bugreport fixage. Figured I should do something.
* Fixed copy/paste errors in Aru castles. (bugreport:2012)
* Updated Trans-only warp in thanatos tower. (bugreport:2227)
* Fixed improper variable in airship quest (bugreport:2238)
* Fixed a minor bug in updated repairmain. (bugreport:2245)
* Updated Giant Enyclopedia bonus. (bugreport:2053)
* Removed Snap from nocast_db in WoE SE
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13219 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_airship.txt | 5 | ||||
-rw-r--r-- | npc/quests/thana_quest.txt | 12 |
2 files changed, 10 insertions, 7 deletions
diff --git a/npc/quests/quests_airship.txt b/npc/quests/quests_airship.txt index 0be42cafa..116e27f49 100644 --- a/npc/quests/quests_airship.txt +++ b/npc/quests/quests_airship.txt @@ -3,7 +3,7 @@ //===== By: ================================================== // Samuray22 //===== Current Version: ===================================== -//= 1.3a +//= 1.4 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -20,6 +20,7 @@ //= understand. [SinSloth] //= 1.3 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf] //= 1.3a Corrected a Typo error ";;". [Samuray22] +//= 1.4 Fixed incorrect variable type used. [L0ne_W0lf] //============================================================ //=======================================================================================================// @@ -267,7 +268,7 @@ airplane,47,61,1 script Crewman 833,{ close; } } - } else if(@kain_ticket==3) { + } else if(kain_ticket==3) { mes "[Kain Himere]"; mes "Oh, how are you?"; mes "Right, there's a favor I have to ask of you. Where are you heading?"; diff --git a/npc/quests/thana_quest.txt b/npc/quests/thana_quest.txt index 75e496b2d..cb9f7fac4 100644 --- a/npc/quests/thana_quest.txt +++ b/npc/quests/thana_quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= [Ishizu-chan] //===== Current Version: ===================================== -//= 1.9 +//= 2.0 //===== Compatible With: ===================================== //= Any eAthena Version i guess? //===== Description: ========================================= @@ -21,6 +21,7 @@ //= 1.7 Fixed a minor bug with prevented code part from reseting properly. [SinSloth] //= 1.8 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf] //= 1.9 Fixed a bug in the last event which allowed an exploit after the first summoning. [SinSloth] +//= 2.0 Cleaned up the trans-only check, and added expanded classes. [L0ne_W0lf] //============================================================ hu_fild01,140,163,5 script Tower Keeper 852,3,3,{ @@ -2589,10 +2590,11 @@ OnThanaDead: } tha_t06,119,120,0 script thana6-7 45,1,1,{ - - if((Class == Job_Lord_Knight) || (Class == Job_High_Priest) || (Class == Job_High_Wizard) || (Class == Job_Whitesmith) || (Class == Job_Sniper) || (Class == Job_Assassin_Cross) || (Class == Job_High_Wizard) || (Class == Job_Lord_Knight2) || (Class == Job_Paladin) || (Class == Job_Champion) || (Class == Job_Professor) || (Class == Job_Stalker) || (Class == Job_Creator) || (Class == Job_Clown) || (Class == Job_Gypsy) || (Class == Job_Paladin2)) warp "thana_step",69,369; - else - { + if (((Upper == 1) && ((Class > Job_Thief_High) && (Class < Job_Baby))) || (((Class == Job_Gunslinger) || (Class == Job_Ninja) || (BaseClass == Job_Taekwon)) && (BaseLevel >= 95))) { + warp "thana_step",69,369; + end; + } + else { mes "^3355FFAn overwhelming force"; mes "acts against you, preventing"; mes "you from proceeding this way...^000000"; |