diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-27 18:32:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-27 18:32:36 -0300 |
commit | 6c51508bb120a97cfbf00f87734d676629a72df0 (patch) | |
tree | 273d199e7ee46e060033aad8abfa53770cc6d679 /npc/functions/clientversion.txt | |
parent | 1fc876e6ffe9c2c3dd39c0d28b379c8209977a0a (diff) | |
download | serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.gz serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.bz2 serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.tar.xz serverdata-6c51508bb120a97cfbf00f87734d676629a72df0.zip |
Remove Increase Carry Weight from Trickmaster and give to Thief rank 3.
This makes Thief utility. I wrote this thinking on Iilia Quest, which CANNOT be
successfuly complete without a thief in your party. (evil laugh).
Diffstat (limited to 'npc/functions/clientversion.txt')
-rw-r--r-- | npc/functions/clientversion.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 730e3d56a..5916c08a9 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -386,6 +386,11 @@ function script clientupdater { skill AL_DP, MAGIC_LVL, 0; mesc l("You have learnt \"Divine Protection\" level @@.", MAGIC_LVL), 3; } + // Grant you Thief Skill Tier 3 + if (THIEF_RANK >= 3) { + skill(ALL_INCCARRY,1,0); + mesc l("You have learnt \"Increase Weight\" in Thief Skills."), 2; + } // Cleanup deletearray RNGTREASURE_DATE; } |