diff options
Diffstat (limited to 'npc/003-1')
-rw-r--r-- | npc/003-1/ishi.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index 9d5d33c8d..e7ec233f0 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -20,9 +20,9 @@ } if (BaseLevel < 37) { - @mpq_cost=(BaseLevel ** 2); + @mpq_cost=((BaseLevel*2/3) ** 2); } else { // From level 37 onwards, we will notice a small drop on price increase factor - @mpq_cost=(BaseLevel ** 2)-(BaseLevel*2); + @mpq_cost=((BaseLevel*2/3) ** 2)-(BaseLevel*2); } if (Mobpt < @mpq_cost) |