diff options
-rw-r--r-- | npc/003-1/aidan.txt | 15 | ||||
-rw-r--r-- | npc/009-1/guards.txt | 2 | ||||
-rw-r--r-- | npc/012-1/lufix.txt | 2 | ||||
-rw-r--r-- | npc/functions/mobhunter.txt | 4 |
4 files changed, 13 insertions, 10 deletions
diff --git a/npc/003-1/aidan.txt b/npc/003-1/aidan.txt index 7d315a102..69e5e434a 100644 --- a/npc/003-1/aidan.txt +++ b/npc/003-1/aidan.txt @@ -122,11 +122,12 @@ L_Finish: close; case 2: setq General_Hunter, 0, 0; - Zeny=Zeny+350000; - getitem StrangeCoin, 100; + Zeny=Zeny+300000; + getitem StrangeCoin, 80; getexp 15750, 100; mesn; - mesq l("Good job, here is 350,000 GP and 100 @@!", getitemlink(StrangeCoin)); + mesq l("Good job, here is 300,000 GP and 80 @@!", getitemlink(StrangeCoin)); + mesc l("Gained @@ XP", "15750"); close; case 3: setq General_Hunter, 0, 0; @@ -134,14 +135,16 @@ L_Finish: getexp 15750, 100; mesn; mesq l("Good job, here is 100,000 GP!"); + mesc l("Gained @@ XP", "15750"); close; case 4: setq General_Hunter, 0, 0; - Zeny=Zeny+250000; - getitem StrangeCoin, 100; + Zeny=Zeny+275000; + getitem StrangeCoin, 60; getexp 15750, 100; mesn; - mesq l("Good job, here is 250,000 GP and 100 @@!", getitemlink(StrangeCoin)); + mesq l("Good job, here is 275,000 GP and 60 @@!", getitemlink(StrangeCoin)); + mesc l("Gained @@ XP", "15750"); close; } mesc l("ILLEGAL SCRIPT POSITION REACHED, PLEASE REPORT.", 1); diff --git a/npc/009-1/guards.txt b/npc/009-1/guards.txt index 397d3f090..e0aa43dbd 100644 --- a/npc/009-1/guards.txt +++ b/npc/009-1/guards.txt @@ -16,7 +16,7 @@ mesn; mesq l("Various people already went missing. We are not allowing anyone to pass, not even GMs!"); if (GHQUEST) - GHQ_Assign(Snake, "Halinarzo", "350.000 GP, 100 "+getitemlink(StrangeCoin)); + GHQ_Assign(Snake, "Halinarzo", "300.000 GP, 80 "+getitemlink(StrangeCoin)); end; L_MKControl: diff --git a/npc/012-1/lufix.txt b/npc/012-1/lufix.txt index 950134f97..121eb64c8 100644 --- a/npc/012-1/lufix.txt +++ b/npc/012-1/lufix.txt @@ -17,7 +17,7 @@ L_Main: if (GHQUEST) - GHQ_Assign(Mouboo, "Hurnscald", "250.000 GP, 100 "+getitemlink(StrangeCoin)); + GHQ_Assign(ForestMushroom, "Hurnscald", "275.000 GP, 60 "+getitemlink(StrangeCoin)); close; L_SummerQuest: diff --git a/npc/functions/mobhunter.txt b/npc/functions/mobhunter.txt index e3cf0d4d1..c80683410 100644 --- a/npc/functions/mobhunter.txt +++ b/npc/functions/mobhunter.txt @@ -15,7 +15,7 @@ function script GHQ_GetQuestIDByMonsterID { case Scorpion: return 3; break; - case Mouboo: + case ForestMushroom: return 4; break; default: @@ -40,7 +40,7 @@ function script GHQ_GetMonsterIDByQuestID { return Scorpion; break; case 4: - return Mouboo; + return ForestMushroom; break; default: debugmes "Invalid quest ID: " + getarg(0); |