diff options
-rw-r--r-- | npc/functions/mobhunter.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index f0fa46834..e52ad17b0 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -182,15 +182,18 @@ function script GHQ_Assign { .@p=getq2(General_Hunter); //next; //mesq l("Current Quest Progress: @@/10,000 kills", .@p); + + // Handle Partial Rewards + if (.@q) + GHQ_GetRewardsOnMilestone(); + mes ""; + mesn; mes l("I represent the @@ Hunters. We hunt @@.", .@loc$, getmonsterlink(.@mobId)); if (.@prize$ != "") mes l("The great prize is @@.", .@prize$); else mes l("The great prize is to unlock a pet!"); - - if (.@q) - GHQ_GetRewardsOnMilestone(); if (.@q == .@id) { .@m=GHQ_GetMonsterIDByQuestID(.@q); mes l("You are currently hunting @@/10000 @@.", .@p, getmonsterlink(.@m)); |