diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-10-28 20:49:14 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-10-28 20:49:14 -0300 |
commit | 2e21958ef8aebf4b809b36216c4d8c30c8fad67f (patch) | |
tree | 1c534343bf6012c177e57e3a3914f9e36e2d22c0 | |
parent | 4f658a6f09dda89e398fd3f691e43a5c56c359d1 (diff) | |
download | serverdata-2e21958ef8aebf4b809b36216c4d8c30c8fad67f.tar.gz serverdata-2e21958ef8aebf4b809b36216c4d8c30c8fad67f.tar.bz2 serverdata-2e21958ef8aebf4b809b36216c4d8c30c8fad67f.tar.xz serverdata-2e21958ef8aebf4b809b36216c4d8c30c8fad67f.zip |
Fix some broken prices with latest commit
-rw-r--r-- | db/re/item_db.conf | 4 | ||||
-rw-r--r-- | npc/craft/price.txt | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 4027b287b..e80b37cd3 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -16473,7 +16473,7 @@ item_db: ( AegisName: "TrainingArrow" Name: "Training Arrow" Type: "IT_AMMO" - Buy: 999999 + Buy: 2 Sell: 1 Weight: 1 Atk: 30 @@ -16486,7 +16486,7 @@ item_db: ( AegisName: "TolchiArrow" Name: "Tolchi Arrow" Type: "IT_AMMO" - Buy: 999999 + Buy: 2 Sell: 0 Weight: 2 Atk: 15 diff --git a/npc/craft/price.txt b/npc/craft/price.txt index 9aa92e19d..ba40f95e8 100644 --- a/npc/craft/price.txt +++ b/npc/craft/price.txt @@ -173,6 +173,7 @@ function script fix_cPrice { _fix_cPrice(BromenalPants); // <= Fortress _fix_cPrice(WarlordPants); _fix_cPrice(AssassinPants); + _fix_cPrice(SaviorPants, 50); // Gloves (more expensive due ASPD) _fix_cPrice(SilkGloves, 27); @@ -181,6 +182,7 @@ function script fix_cPrice { _fix_cPrice(ManaGloves, 27); _fix_cPrice(WarlordGloves, 27); _fix_cPrice(AssassinGloves, 27); + _fix_cPrice(SaviorGloves, 50); // Helmets _fix_cPrice(InfantryHelmet); |