diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-02 20:03:43 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-02 20:03:43 -0300 |
commit | 2a4231746830652e948f02a7bab2f32e9a4917e7 (patch) | |
tree | d14c2cdf1790ac6736d9026ff4a79cf912cc2a47 /npc | |
parent | 59ecc7971f88aad9f8db4d0c52e60a2c79201bb7 (diff) | |
download | serverdata-2a4231746830652e948f02a7bab2f32e9a4917e7.tar.gz serverdata-2a4231746830652e948f02a7bab2f32e9a4917e7.tar.bz2 serverdata-2a4231746830652e948f02a7bab2f32e9a4917e7.tar.xz serverdata-2a4231746830652e948f02a7bab2f32e9a4917e7.zip |
Sell price for craftables should be 3× not 3.5×
Diffstat (limited to 'npc')
-rw-r--r-- | npc/craft/price.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/craft/price.txt b/npc/craft/price.txt index 4b0ab9c39..0d0828ede 100644 --- a/npc/craft/price.txt +++ b/npc/craft/price.txt @@ -6,7 +6,7 @@ // Always run this when casting @reloaditemdb function script _fix_cPrice { .@const$ = data_to_string(getarg(0)); - .@m = getarg(1, 35); + .@m = getarg(1, 30); // Shady code by gumi if (startswith(.@const$, "Craft")) { @@ -122,8 +122,8 @@ function script fix_cPrice { _fix_cPrice(BansheeBow); // And magic - _fix_cPrice(TrainingWand, 22); - _fix_cPrice(NoviceWand, 27); + _fix_cPrice(TrainingWand, 18); + _fix_cPrice(NoviceWand, 22); _fix_cPrice(ApprenticeWand); _fix_cPrice(LeaderWand); _fix_cPrice(MysticWand); @@ -175,12 +175,12 @@ function script fix_cPrice { _fix_cPrice(AssassinPants); // Gloves (more expensive due ASPD) - _fix_cPrice(SilkGloves, 40); - _fix_cPrice(LeatherGloves, 40); - _fix_cPrice(BromenalGloves, 40); - _fix_cPrice(ManaGloves, 40); - _fix_cPrice(WarlordGloves, 40); - _fix_cPrice(AssassinGloves, 40); + _fix_cPrice(SilkGloves, 37); + _fix_cPrice(LeatherGloves, 37); + _fix_cPrice(BromenalGloves, 37); + _fix_cPrice(ManaGloves, 37); + _fix_cPrice(WarlordGloves, 37); + _fix_cPrice(AssassinGloves, 37); // Helmets _fix_cPrice(InfantryHelmet); |