diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-04 18:06:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-04 18:06:04 -0300 |
commit | 9c1fe2386df40dca039779f407e7f716da0ddfef (patch) | |
tree | 22696c1e30f29950898b106a0fc04b75b4ab014f /npc | |
parent | e9dc3d0c7f3aa89756560efa78aa983a94fe7440 (diff) | |
download | serverdata-9c1fe2386df40dca039779f407e7f716da0ddfef.tar.gz serverdata-9c1fe2386df40dca039779f407e7f716da0ddfef.tar.bz2 serverdata-9c1fe2386df40dca039779f407e7f716da0ddfef.tar.xz serverdata-9c1fe2386df40dca039779f407e7f716da0ddfef.zip |
Carry on
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/util.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt index ea6fa352c..89320b531 100644 --- a/npc/functions/util.txt +++ b/npc/functions/util.txt @@ -509,7 +509,7 @@ function script mstone { // Determine how much stats you need, this is based on players // and change based on $Global Variables - .int=10; + .int=5; .lvl=15; .jlv=10; @@ -577,7 +577,7 @@ function script sk_lvup { // Returns the intelligence cost based on skill level // sk_intcost( sk ) function script sk_intcost { - .@cost=(getskilllv(getarg(0))+1)*17; + .@cost=(getskilllv(getarg(0))+1)*10; if (readparam(bInt) >= .@cost) return 1; return 0; |