diff options
author | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-21 17:34:34 +0000 |
---|---|---|
committer | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-21 17:34:34 +0000 |
commit | b25ef10b7a952857273dcf42848d1cc3079de70a (patch) | |
tree | efd53afdefbdb4763aebf78f7b37575cd28b70b5 /npc/quests | |
parent | 39271cce09269111a497b7816d516c42ee0a8703 (diff) | |
download | hercules-b25ef10b7a952857273dcf42848d1cc3079de70a.tar.gz hercules-b25ef10b7a952857273dcf42848d1cc3079de70a.tar.bz2 hercules-b25ef10b7a952857273dcf42848d1cc3079de70a.tar.xz hercules-b25ef10b7a952857273dcf42848d1cc3079de70a.zip |
* Deleted Unnecesary Next; in Hunter Job Quest. (bugreports:1665,2239,2179)
* Fixed a bug with the Bio Lab Quest when you relog. (bugreport:1798)
* Corrected some Issues with the Waiting Room in Hunter Job Quest. (bugreport:1890)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13227 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index 3c2fe4b83..be6c57763 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -4,7 +4,7 @@ //= Persian, Vicious_Pucca, aoa00, Evera, MasterOfMupppets, //= Lupus, Lord Gywall //===== Current Version: ===================================== -//= 4.2 +//= 4.3 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -65,6 +65,8 @@ //= 4.0 Updated several NPCs to Official (iRO) dialog, and restrucured. [L0ne_W0lf] //= 4.1 Updated Dungeon quest, and Friendhsip quest to 10.3 standards. [L0ne_W0lf] //= 4.2 Fixed wrong variable type in use in "Box#cube1". [L0ne_W0lf] +//= 4.3 Fixed a bug where if you relog after you take out the Lab Permit from the Box +//= You can't finish the quest. (bugreport:1798) [Samuray22] //============================================================ lighthalzen,1,1,7 script sneakAddSuber -1,{ @@ -593,7 +595,7 @@ lighthalzen,341,224,3 script Fishbone 868,{ } end; } - else if (lhz_sincube < 10) { + else if (lhz_sincube <= 10) { mes "[Fishbone]"; mes "Hm, you must not have"; mes "accomplished whatever"; @@ -724,7 +726,7 @@ lhz_cube,237,198,0 script Bundle of Files#cube 111,{ mes "on the ground.^000000"; close; } - else if (lhz_sincube < 10) { + else if (lhz_sincube <= 10) { if (@lhz_secret01 < 1) { mes "^3355FFThere are a bunch"; mes "of files scattered"; @@ -904,7 +906,7 @@ lhz_cube,248,179,0 script Chest#cube 111,{ mes "and isn't suited for battle.^000000"; close; } - else if (lhz_sincube == 7) { + else if (lhz_sincube == 7 || lhz_sincube == 10) { mes "^3355FFYou've found a chest,"; mes "but more importantly,"; mes "there is a utility Axe"; @@ -1732,7 +1734,9 @@ lhz_cube,248,193,0 script Box#cube1 111,{ mes "Permit^3355FF, knowing that you"; mes "will be needing it later."; set lhz_sincube,10; - getitem 2657,1; //Lab_Passport + if(countitem(2657) < 1) { + getitem 2657,1; //Lab_Passport + } } close; } |