diff options
-rw-r--r-- | npc/functions/mobhunter.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index aaf344e7b..2b5988c31 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -33,7 +33,7 @@ function script GHQ_GetMonsterIDByQuestID { return Snake; break; case 3: - return Snake; + return Scorpion; break; default: debugmes "Invalid quest ID: " + getarg(0); @@ -52,7 +52,7 @@ function script GHQ_Assign { mesn; mes l("I represent the @@ Hunters. We hunt @@.", getarg(1), getmonsterlink(getarg(0))); mes l("The great prize is @@. It can be claimed with Aidan, on Tulimshar.", getarg(2)); - if (getq(General_Hunter)) mes l("You are currently hunting @@/10000 @@. Do you want to switch?", getq2(General_Hunter), getmonsterlink(GHQ_GetQuestIDByMonsterID(getq(General_Hunter)))); + if (getq(General_Hunter)) mes l("You are currently hunting @@/10000 @@. Do you want to switch?", getq2(General_Hunter), getmonsterlink(GHQ_GetMonsterIDByQuestID(getq(General_Hunter)))); select l("I'm not interested."), rif(GHMEMO[.@id] < 10000,l("I'll hunt them for you.")); |