diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-25 23:25:48 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-25 23:25:48 -0300 |
commit | 7c9f31a5156d56638592844b33d5f9360758af6a (patch) | |
tree | 8b1f3538645a33a393c865eb41fd7f9be0609d9e /npc/functions | |
parent | 693472fb909c05356e7172eda25918095ed530cc (diff) | |
download | serverdata-7c9f31a5156d56638592844b33d5f9360758af6a.tar.gz serverdata-7c9f31a5156d56638592844b33d5f9360758af6a.tar.bz2 serverdata-7c9f31a5156d56638592844b33d5f9360758af6a.tar.xz serverdata-7c9f31a5156d56638592844b33d5f9360758af6a.zip |
Transfer ALL_INCCARRY to Trickmaster. Updater: Remove Merchant Police
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/clientversion.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 98dc820c1..fdc6b7bc3 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -288,6 +288,17 @@ function script clientupdater { RECIPES_EQUIPMENT[CraftDagger]=true; dispbottom l("Dagger Crafting recipe learnt."); } + // Mercenary Rank removed + if (MERC_RANK) { + THIEF_RANK=MERC_RANK; + MERC_RANK=0; + dispbottom l("Your class has been changed from %s to %s.", b(l("Merchant Police")), b(l("Thief"))); + } + if (getskilllv(ALL_INCCARRY)) { + skill TF_STEAL, getskilllv(ALL_INCCARRY); + setskill ALL_INCCARRY, 0; + dispbottom l("Increase Weight skill replaced with Stealing."); + } // Cleanup deletearray RNGTREASURE_DATE; } |