diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-16 14:33:47 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-16 14:33:47 -0200 |
commit | 43da5f6b065a4f5157b0f61c9ddef436f7264c22 (patch) | |
tree | e19c309458f91265cc77ab4e2237cceefa253d55 | |
parent | f099656a78c804516decbb061c6c9a961bb469f6 (diff) | |
download | serverdata-43da5f6b065a4f5157b0f61c9ddef436f7264c22.tar.gz serverdata-43da5f6b065a4f5157b0f61c9ddef436f7264c22.tar.bz2 serverdata-43da5f6b065a4f5157b0f61c9ddef436f7264c22.tar.xz serverdata-43da5f6b065a4f5157b0f61c9ddef436f7264c22.zip |
Rewards at Ishi are now more attainable
-rw-r--r-- | npc/003-1/ishi.txt | 4 | ||||
-rw-r--r-- | npc/scripts.conf | 2 |
2 files changed, 3 insertions, 3 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) diff --git a/npc/scripts.conf b/npc/scripts.conf index 597ba324a..f9f6c6c5d 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -4,7 +4,6 @@ "npc/functions/permissions.txt", "npc/functions/main.txt", "npc/functions/util.txt", -"npc/functions/instances.txt", // General-purpose Framework functions "npc/functions/array.txt", @@ -92,6 +91,7 @@ // These are to be proccessed later "npc/functions/gmbot.txt", +"npc/functions/instances.txt", // Maps specific scripts @include "npc/_import.txt" |