diff options
-rw-r--r-- | npc/027-1/laura.txt | 13 | ||||
-rw-r--r-- | npc/functions/clientversion.txt | 3 |
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 |