diff options
Diffstat (limited to 'npc/functions/clientversion.txt')
-rw-r--r-- | npc/functions/clientversion.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index f7926953e..36d4792b0 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -825,6 +825,18 @@ function script clientupdater { dispbottom l("Crafting rules changed! Your crafting skill was lowered to Level 5, talk to Craftmaster to recover it!"); } + // Mass Provoke replacement + if (getskilllv(EVOL_AREA_PROVOKE)) { + getitembound ScholarshipBadge, getskilllv(EVOL_AREA_PROVOKE), 4; + MAGIC_PTS-=getskilllv(EVOL_AREA_PROVOKE)+1; + skill EVOL_AREA_PROVOKE, 0, 0; + dispbottom col(l("MSP for Area Provoke was refunded."), 1); + } + if (getskilllv(EVOL_MASS_PROVOKE)) { + skill EVOL_AREA_PROVOKE, getskilllv(EVOL_MASS_PROVOKE), 0; + skill EVOL_MASS_PROVOKE, 0, 0; + dispbottom col(l("Mass Provoke replaced with Area Provoke."), 1); + } } // :// End of Regular Update System |