diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-03 03:47:30 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-05-03 03:47:30 +0000 |
commit | 7563f5131f94b33c0ad988a21de62567a6906f99 (patch) | |
tree | d62cc00ca1a86402c1919728fa57f00b8b78f8cf /npc/quests | |
parent | 55556c1c32b023ea2164799efb723e005ee3d012 (diff) | |
download | hercules-7563f5131f94b33c0ad988a21de62567a6906f99.tar.gz hercules-7563f5131f94b33c0ad988a21de62567a6906f99.tar.bz2 hercules-7563f5131f94b33c0ad988a21de62567a6906f99.tar.xz hercules-7563f5131f94b33c0ad988a21de62567a6906f99.zip |
Fifth door now checks for a variable HIGHER or EQUAL to 74 not 84, as pointed out by Stollen.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10441 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests')
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index bed3d068a..b4b9277cc 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf (Script), DZeroX (Timer) //===== Current Version: ===================================== -//= 2.0 +//= 2.1 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -36,6 +36,7 @@ //= Corrected "KH_Kielh02", was setting off a debug, invalid map index. Should have been "kh_Kiehl02" //= Made .KHQuestBusy$ into a temp global variable. $@KHQuestBusy$. //= 2.0 Changed the labels on the "Big Doors" to "Identifier Names" to prevent an error with using getvariableofnpc [L0ne_W0lf] +//= 2.1 Fifth door now checks for a variable HIGHER or EQUAL to 74 not 84, as pointed out by Stollen. [L0ne_W0lf] // //============================================================ @@ -6451,7 +6452,7 @@ OnMyMobDead: // Put it in anyway, used to make sure people don't abuse the room. //---------------------------------------------------------------------------- kh_kiehl01,166,187,0 script Big Door#BigDoorKHQ5 111,{ - if (($@KH_DoorInvoker$ == "") && (KielHyreQuest >= 84) && (KielHyreQuest <= 106)) { + if (($@KH_DoorInvoker$ == "") && (KielHyreQuest >= 74) && (KielHyreQuest <= 106)) { if ($@KHQuestBusy$ == "") { initnpctimer; |