diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-03-19 21:30:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-03-19 21:30:50 -0300 |
commit | 8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288 (patch) | |
tree | 99e82aa9f91df2d70c51d217e849922b67e58645 | |
parent | 7e94b75d518ffda782b12aacbc8c51bcea22952a (diff) | |
download | serverdata-8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288.tar.gz serverdata-8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288.tar.bz2 serverdata-8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288.tar.xz serverdata-8b8d329ca3a7e78b0598a2c5f5ec0ab55b69d288.zip |
Increasing the reward for sacrificing the Mouboo from 1 to 3 MSP
-rw-r--r-- | npc/functions/util.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index 75607185f..3ee894abb 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -844,7 +844,7 @@ function script mstone { // MAGIC_PTS → Amount of used Magic Skill Points // sk_maxpoints() → Max Magic Skill Points you may use // Returns how many points you can use -// Current maximum as of 2020-06-21: (pratic) 30 ~ 43 (theoric) +// Current maximum as of 2020-06-21: (pratic) 30 ~ 45 (theoric) function script sk_maxpoints { // 2 points per magic level .@val=(MAGIC_LVL)*2; @@ -858,8 +858,8 @@ function script sk_maxpoints { .@val+=(REBIRTH*2); // 1 point per skill permit level .@val+=getskilllv(TMW2_SKILLPERMIT); - // Sacrificing the Mouboo: +1 MSP - .@val+=(alignment() < 0 ? 1 : 0); + // Sacrificing the Mouboo: +3 MSP + .@val+=(alignment() < 0 ? 3 : 0); return .@val; } |