summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-09-29 23:59:27 -0300
committerJesusaves <cpntb1@ymail.com>2022-09-29 23:59:27 -0300
commitc331252c0c3dec266d36927094a8c59814b558a1 (patch)
tree95f1da26409682f590051cb37ec41ba9686c05de
parentf944d4c4afe2bf5c709c8335e16267720fc98423 (diff)
downloadserverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.gz
serverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.bz2
serverdata-c331252c0c3dec266d36927094a8c59814b558a1.tar.xz
serverdata-c331252c0c3dec266d36927094a8c59814b558a1.zip
Finally nerf First Tier fee from 40 eggs to 30 eggs, and 500 slime to 400 slime.
Completioners will get 60,000 experience and 20 GP.
-rw-r--r--npc/027-1/laura.txt13
-rw-r--r--npc/functions/clientversion.txt3
2 files changed, 11 insertions, 5 deletions
diff --git a/npc/027-1/laura.txt b/npc/027-1/laura.txt
index 2374c0f5e..2c6232a21 100644
--- a/npc/027-1/laura.txt
+++ b/npc/027-1/laura.txt
@@ -51,13 +51,16 @@ L_Tier1:
mesq l("Good. Did you knew you could register to the Special Class, in order to get an extra skill point?");
next;
mesn;
- mesq l("We only require a small fee of 1 @@, or 40 @@, or 500 @@ if you are poor adventurer.", getitemlink(DivineApple), getitemlink(SnakeEgg), getitemlink(MaggotSlime));
+ mesq l("We only require a small fee of %d %s, or %d %s, or %d %s if you are poor adventurer.",
+ 1, getitemlink(DivineApple),
+ 30, getitemlink(SnakeEgg),
+ 400, getitemlink(MaggotSlime));
next;
inventoryplace ScholarshipBadge, 1;
switch(select(
rif(countitem(DivineApple) >= 1, l("I got the apple.")),
- rif(countitem(SnakeEgg) >= 40, l("I got the eggs.")),
- rif(countitem(MaggotSlime) >= 500, l("I got the maggots slimes.")),
+ rif(countitem(SnakeEgg) >= 30, l("I got the eggs.")),
+ rif(countitem(MaggotSlime) >= 400, l("I got the maggots slimes.")),
l("I will apply later."))) {
case 1:
@@ -65,11 +68,11 @@ L_Tier1:
getexp $MANA_BLVL*100, $MANA_JLVL*10;
break;
case 2:
- delitem SnakeEgg, 40;
+ delitem SnakeEgg, 30;
getexp $MANA_BLVL*100, $MANA_JLVL*10;
break;
case 3:
- delitem MaggotSlime, 500;
+ delitem MaggotSlime, 400;
break;
default:
close;
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt
index 30a83b40a..e4b8f0e13 100644
--- a/npc/functions/clientversion.txt
+++ b/npc/functions/clientversion.txt
@@ -1049,6 +1049,9 @@ function script clientupdater {
getitem ScholarshipBadge, 1;
if (getskilllv(TMW2_SKILLPERMIT) >= 2)
getexp 20000, 1000;
+ // Actual value has changed, you'll be refunded in EXP
+ if (getskilllv(TMW2_SKILLPERMIT) >= 1)
+ #ADD_LVL+=60000;
}
// :// End of Regular Update System