diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 10:57:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 10:58:47 -0300 |
commit | f2c4a10c9f4bccf832ad0f813079be49531137fa (patch) | |
tree | 39777b990951acf229090e0c25f33b498a407dc6 /npc/003-1/ishi.txt | |
parent | 9e799c1ac640becba8e286085faf90bde74e77bd (diff) | |
download | serverdata-f2c4a10c9f4bccf832ad0f813079be49531137fa.tar.gz serverdata-f2c4a10c9f4bccf832ad0f813079be49531137fa.tar.bz2 serverdata-f2c4a10c9f4bccf832ad0f813079be49531137fa.tar.xz serverdata-f2c4a10c9f4bccf832ad0f813079be49531137fa.zip |
Slow down Ishi prices increase (carefully calculated)
Diffstat (limited to 'npc/003-1/ishi.txt')
-rw-r--r-- | npc/003-1/ishi.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index a38ea4e5d..a8a1de1c1 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -15,7 +15,11 @@ close; } - @mpq_cost=(BaseLevel ** 2); + if (BaseLevel < 37) { + @mpq_cost=(BaseLevel ** 2); + } else { // From level 37 onwards, we will notice a small drop on price increase factor + @mpq_cost=(BaseLevel ** 2)-(BaseLevel*2); + } if (Mobpt < @mpq_cost) { |