diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-01-12 11:01:56 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2015-01-12 11:01:56 +0530 |
commit | 7fc45ed76a43749c4b3a115500b1dcffb9fbf639 (patch) | |
tree | 2fdf3773ea3d1834ced395968c5c98587533a463 | |
parent | ca9cd51e683d39c8a7f099a46747ff166d632230 (diff) | |
download | hercules-7fc45ed76a43749c4b3a115500b1dcffb9fbf639.tar.gz hercules-7fc45ed76a43749c4b3a115500b1dcffb9fbf639.tar.bz2 hercules-7fc45ed76a43749c4b3a115500b1dcffb9fbf639.tar.xz hercules-7fc45ed76a43749c4b3a115500b1dcffb9fbf639.zip |
Fixes the Wrong conditions of Malaya Quest - Get Rid of Jejeling
-rw-r--r-- | npc/re/quests/quests_malaya.txt | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/npc/re/quests/quests_malaya.txt b/npc/re/quests/quests_malaya.txt index b315771b9..f1a60dcee 100644 --- a/npc/re/quests/quests_malaya.txt +++ b/npc/re/quests/quests_malaya.txt @@ -71,7 +71,7 @@ malaya,266,76,3 script Rodel the Guard#malaya 4_MAL_SOLDIER,4,4,{ close; } .@playtime = questprogress(7405, PLAYTIME); - if (!.@playtime) { + if (.@playtime==1) { mes "[Rodel the Guard]"; mes "Whew, thanks to you, I have one less thing to worry about."; mes "I will lose less of my things."; @@ -133,17 +133,11 @@ malaya,266,76,3 script Rodel the Guard#malaya 4_MAL_SOLDIER,4,4,{ mes "It would be a simple task for you."; setquest 7404; close; - } else if (.@hunting == 0) { // FIXME + } else if (.@hunting == 1) { mes "[Rodel the Guard]"; mes "You have to get rid of 20 Jejelings."; mes "20 should be enough to give those Jejelings a good scare."; close; - } else if (.@hunting == 1) { - mes "[Rodel the Guard]"; - mes "Oh, the hunt is over, but you haven't killed all the Jejelings."; - mes "Come again if you want another try."; - erasequest 7404; - close; } else { mes "[Rodel the Guard]"; mes "Oh, I have confirmed you got rid of 20 Jejelings."; |