diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-05 09:45:18 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-05 09:45:18 -0300 |
commit | 87cd457c4f94a58109bf1a4953a37a07858ee81e (patch) | |
tree | ba7b8211c8e230c0fd6c5683712cc64393745335 /npc | |
parent | c523899b3e28920c2f77e911b40004aab79f17ce (diff) | |
download | serverdata-87cd457c4f94a58109bf1a4953a37a07858ee81e.tar.gz serverdata-87cd457c4f94a58109bf1a4953a37a07858ee81e.tar.bz2 serverdata-87cd457c4f94a58109bf1a4953a37a07858ee81e.tar.xz serverdata-87cd457c4f94a58109bf1a4953a37a07858ee81e.zip |
Getting Base Craft Options above level 40 is now very difficult.
This should preserve the balance in the long term.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 6e26f7788..aeae6324b 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -1051,7 +1051,7 @@ function script csysGUI_OptPrice { switch (.@sk) { case CRGROUP_BASE: - return (.@lv < 10 ? 1000 : 1500)*.@lv; + return (.@lv < 40 ? (.@lv < 10 ? 1000 : 1500) : 3000)*.@lv; // Tier 1 case CRGROUP_ATK: case CRGROUP_DEF: |