diff options
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 683beb917..725c1723e 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -602,6 +602,8 @@ function script sk_maxpoints { .@val+=min(5, ((JobLevel-15)/12)); // 1 point per being a player .@val+=1; + // 1 point per Rebirth + .@val+=REBIRTH; // 1 point per skill permit level .@val+=getskilllv(TMW2_SKILLPERMIT); return .@val; |