From d894d1627651d090b7dd81efc35872b5b970ad1e Mon Sep 17 00:00:00 2001 From: L0ne_W0lf Date: Thu, 18 Sep 2008 19:26:01 +0000 Subject: *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 --- npc/quests/thana_quest.txt | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'npc/quests/thana_quest.txt') 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"; -- cgit v1.2.3-70-g09d2