diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-06-26 21:51:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-06-26 21:51:30 -0300 |
commit | eb85c0ce78927d038a58c558bf69b5c2d9aacafc (patch) | |
tree | 217c88ea7260fe03f43c323044eda5fb88bfb95e /npc/functions/util.txt | |
parent | e10ceb8a00612a0529f95a3075c5fe7738b7018d (diff) | |
download | serverdata-eb85c0ce78927d038a58c558bf69b5c2d9aacafc.tar.gz serverdata-eb85c0ce78927d038a58c558bf69b5c2d9aacafc.tar.bz2 serverdata-eb85c0ce78927d038a58c558bf69b5c2d9aacafc.tar.xz serverdata-eb85c0ce78927d038a58c558bf69b5c2d9aacafc.zip |
Sacrificing the injuried mouboo will now give you 1 MSP
Ideally though, we should have Orum/Waric/whatever give you this MSP
Diffstat (limited to 'npc/functions/util.txt')
-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 99dc2045f..7bf00d0d6 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -681,6 +681,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); return .@val; } |