summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-15 23:49:19 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-15 23:49:19 -0300
commite381bfd75ed2c664b1c980bd66271563a56301c2 (patch)
treef35ef2f40a283ee6f0246af32fa5d3853d165204 /npc
parent8ca983615194eebee04581c2a721510d7cbb230a (diff)
downloadserverdata-e381bfd75ed2c664b1c980bd66271563a56301c2.tar.gz
serverdata-e381bfd75ed2c664b1c980bd66271563a56301c2.tar.bz2
serverdata-e381bfd75ed2c664b1c980bd66271563a56301c2.tar.xz
serverdata-e381bfd75ed2c664b1c980bd66271563a56301c2.zip
Grand Hunter Hurnscald
Diffstat (limited to 'npc')
-rw-r--r--npc/012-1/lufix.txt4
-rw-r--r--npc/functions/mobhunter.txt6
2 files changed, 9 insertions, 1 deletions
diff --git a/npc/012-1/lufix.txt b/npc/012-1/lufix.txt
index 8647b3ab3..2957437bc 100644
--- a/npc/012-1/lufix.txt
+++ b/npc/012-1/lufix.txt
@@ -9,8 +9,10 @@
if (season() == SUMMER) {
mesq l("Yay it's summer");
} else {
- mesq l("Aww it's not summer");
+ mesq l("Aww it's not summer. I love day June 21st, and the summer vacations!");
}
+ if (GHQUEST)
+ GHQ_Assign(Mouboo, "Hurnscald", "1.000.000 GP");
close;
OnInit:
diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt
index d56b26840..44f4ac247 100644
--- a/npc/functions/mobhunter.txt
+++ b/npc/functions/mobhunter.txt
@@ -14,6 +14,9 @@ function script GHQ_GetQuestIDByMonsterID {
case Scorpion:
return 3;
break;
+ case Mouboo:
+ return 4;
+ break;
default:
debugmes "Invalid mob ID: " + getarg(0);
dispbottom l("ERROR, Please report: GHQ GQID: Invalid ID: @@", getarg(0));
@@ -35,6 +38,9 @@ function script GHQ_GetMonsterIDByQuestID {
case 3:
return Scorpion;
break;
+ case 4:
+ return Mouboo;
+ break;
default:
debugmes "Invalid quest ID: " + getarg(0);
dispbottom l("ERROR, Please report: GHQ GMID: Invalid ID: @@", getarg(0));