diff options
Diffstat (limited to 'npc')
-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) { |