diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-19 20:51:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-19 20:51:11 -0300 |
commit | f38226b945e34683395ef272cb843f9f25d11031 (patch) | |
tree | ec56712001b3453a68a511d9b551226bf2439b75 /npc/functions | |
parent | 953c069c44b444dece2a6c28600d562c9ac6684b (diff) | |
download | serverdata-f38226b945e34683395ef272cb843f9f25d11031.tar.gz serverdata-f38226b945e34683395ef272cb843f9f25d11031.tar.bz2 serverdata-f38226b945e34683395ef272cb843f9f25d11031.tar.xz serverdata-f38226b945e34683395ef272cb843f9f25d11031.zip |
Update trickster
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/util.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 51f366b4b..77d40e6d4 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -588,6 +588,8 @@ function script max_subclass { function script sk_maxpoints { // 2 points per magic level .@val=(MAGIC_LVL)*2; + // 1 point every twice magic level + .@val+=(MAGIC_LVL/2); // 1 point per skill permit level .@val+=getskilllv(TMW2_SKILLPERMIT); return .@val; |