diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-06 19:33:27 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-06 19:33:27 -0300 |
commit | 0a3f6c21632c329e771c6243136c578ba8295c92 (patch) | |
tree | 96a95f36e84773e7f53204a99ad54e857b708109 /npc/003-1 | |
parent | d0c1494a7c2b714c5b07b3c5e584cab16e44193b (diff) | |
download | serverdata-0a3f6c21632c329e771c6243136c578ba8295c92.tar.gz serverdata-0a3f6c21632c329e771c6243136c578ba8295c92.tar.bz2 serverdata-0a3f6c21632c329e771c6243136c578ba8295c92.tar.xz serverdata-0a3f6c21632c329e771c6243136c578ba8295c92.zip |
Fix Ishi bad formula
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/ishi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index f7f337a3f..a4cbb5a9c 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -28,7 +28,7 @@ // After level 50, the formula changes. We don't have exponential anymore. // Previous increase reached 67 and will stop at this value. @mpq_cost=((50*2/3) ** 2)-(50*2); - @mpq_cost+=(BaseLevel)*67; + @mpq_cost+=(BaseLevel-50)*67; // Of course... We still need to act as if exponent was still there... // So we raise it a bit each 3 levels @mpq_cost+=(BaseLevel/3)*3; |