diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-28 22:21:37 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-28 22:21:37 +0000 |
commit | cf82210f2cda20fa16fa5f9378708f06c6727b01 (patch) | |
tree | 9ca984d18581128b4b21476374e25425089733c8 /npc/quests/Kiel_Hyre_Quest.txt | |
parent | 17444b0d4381c2164027ea3e75fd45d9ee02abdd (diff) | |
download | hercules-cf82210f2cda20fa16fa5f9378708f06c6727b01.tar.gz hercules-cf82210f2cda20fa16fa5f9378708f06c6727b01.tar.bz2 hercules-cf82210f2cda20fa16fa5f9378708f06c6727b01.tar.xz hercules-cf82210f2cda20fa16fa5f9378708f06c6727b01.zip |
Fixed a couple bugs in the Kiel Hyre quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10824 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/Kiel_Hyre_Quest.txt')
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index fe39bf6e5..2ec132327 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -65,6 +65,7 @@ //= 3.1 Moved the "delitem" for all related quest items to the proper NPC. [L0ne_W0lf] //= 3.2 Fixed error with Allysia teling you to "Go away." maybe. [L0ne_W0lf] //= 3.2b Fixed some typos and grammar mistakes. [SinSloth] +//= 3.3 Fixed the receiver log out bugs. [L0ne_W0lf] //============================================================ //============================================================================ // Kiel Hyre Quest/Robotic Lab Dungeon @@ -6367,7 +6368,6 @@ yuno_fild09,158,217,0 script Wooden Board 111,{ //---------------------------------------------------------------------------- kh_kiehl01,17,39,0 script Receiver 111,{ if (.KHKilled < 1) { - set .KHKilled,.KHKilled+1; mes "^333333*BBBZZZ*^000000"; if (KielHyreQuest == 74) { next; @@ -6380,8 +6380,8 @@ kh_kiehl01,17,39,0 script Receiver 111,{ mes "try to find me, adventurer.^000000."; set KielHyreQuest,76; } - close2; + set .KHKilled,.KHKilled+1; monster "kh_kiehl01",16,32,"Alicel",1739,1,"Receiver::OnMyMobDead"; monster "kh_kiehl01",18,31,"Aliot",1740,1,"Receiver::OnMyMobDead"; end; @@ -6752,12 +6752,12 @@ OnTouch: //---------------------------------------------------------------------------- kh_kiehl01,15,179,0 script Robots#kh1 111,{ if (.KHKilled < 1) { - set .KHKilled,.KHKilled+1; mes "^3355FFAs soon as you"; mes "touch the test tube,"; mes "a bunch of robots"; mes "suddenly appeared.^000000."; close2; + set .KHKilled,.KHKilled+1; monster "kh_kiehl01",18,181,"Aliot",1740,1,"Robots#kh1::OnMyMobDead"; monster "kh_kiehl01",18,180,"Alicel",1739,1,"Robots#kh1::OnMyMobDead"; monster "kh_kiehl01",18,179,"Aliot",1740,1,"Robots#kh1::OnMyMobDead"; |