summaryrefslogtreecommitdiff
path: root/npc
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-26 22:23:26 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-26 22:23:26 -0300
commit7b1e7d1540cf893d299bf471a23cab19e70e06df (patch)
tree2544fac217119b96c28979fb634d000ad69c5cec /npc
parent3d2a3d2fca54530614c134d61d555fa9d75fee63 (diff)
downloadserverdata-7b1e7d1540cf893d299bf471a23cab19e70e06df.tar.gz
serverdata-7b1e7d1540cf893d299bf471a23cab19e70e06df.tar.bz2
serverdata-7b1e7d1540cf893d299bf471a23cab19e70e06df.tar.xz
serverdata-7b1e7d1540cf893d299bf471a23cab19e70e06df.zip
Rebalance prices. Don't kill mouboos! :mou:
Diffstat (limited to 'npc')
-rw-r--r--npc/003-1/aidan.txt15
-rw-r--r--npc/009-1/guards.txt2
-rw-r--r--npc/012-1/lufix.txt2
-rw-r--r--npc/functions/mobhunter.txt4
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);