From f2c4a10c9f4bccf832ad0f813079be49531137fa Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 29 May 2018 10:57:02 -0300 Subject: Slow down Ishi prices increase (carefully calculated) --- npc/003-1/ishi.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'npc/003-1/ishi.txt') 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) { -- cgit v1.2.3-60-g2f50