diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 21:06:53 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 21:06:53 -0300 |
commit | afae5cb47fc15fc70698b7bb2e1c7f6c5e9d23d6 (patch) | |
tree | 17c00d37920b33a837f668cec3dd499478a0f531 | |
parent | 4d3b2c5c8f6ace701bd843c610deca7b86dbb7c5 (diff) | |
download | serverdata-afae5cb47fc15fc70698b7bb2e1c7f6c5e9d23d6.tar.gz serverdata-afae5cb47fc15fc70698b7bb2e1c7f6c5e9d23d6.tar.bz2 serverdata-afae5cb47fc15fc70698b7bb2e1c7f6c5e9d23d6.tar.xz serverdata-afae5cb47fc15fc70698b7bb2e1c7f6c5e9d23d6.zip |
Fix my own share of bugs
-rw-r--r-- | db/re/mob_db.conf | 7 | ||||
-rw-r--r-- | npc/003-5/jeweler.txt | 18 |
2 files changed, 11 insertions, 14 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 338bbf4c3..912f873ff 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -4291,9 +4291,8 @@ mob_db: ( Drops: { IronOre: 700 Coal: 400 - Coal: 250 Ruby: 70 - Topaz: 46 + Topaz: 46 Emerald: 28 Diamond: 14 Amethyst: 8 @@ -4333,8 +4332,7 @@ mob_db: ( } Drops: { IronOre: 950 - Coal: 800 - Coal: 400 + Coal: 800 Ruby: 110 Topaz: 80 Emerald: 48 @@ -4377,7 +4375,6 @@ mob_db: ( Drops: { IronOre: 1500 Coal: 1000 - IronOre: 750 Ruby: 130 Topaz: 100 Emerald: 64 diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index b69996147..3fbf5ae04 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -60,15 +60,15 @@ L_Gemstone: goto L_Menu; } menu - rif(countitem(Diamond) >= 1 , l("Diamond Ring (+2 vit)"), L_Diamond, - rif(countitem(Ruby) >= 1 , l("Ruby Ring (+2 str)"), L_Ruby, - rif(countitem(Amethyst) >= 1, l("Amethyst Ring (+2 dex)"), L_Amethyst, - rif(countitem(Sapphire) >= 1, l("Sapphire Ring (+2 int)"), L_Sapphire, - rif(countitem(Topaz) >= 1 , l("Topaz Ring (+2 agi)"), L_Topaz, - - rif(countitem(Emerald) >= 1 , l("Emerald Ring (+2 luck)"), L_Emerald, - rif(countitem(Pearl) >= 3 , l("3x Pearl Ring (+1 agi/int/dex)"), L_Pearl, - rif(countitem(BlackPearl) >= 1, l("Black Pearl Ring (+1 str/vit/luk)"), L_BlackPearl, + rif(countitem(Diamond) >= 1 , l("Diamond Ring (+2 vit)")), L_Diamond, + rif(countitem(Ruby) >= 1 , l("Ruby Ring (+2 str)")), L_Ruby, + rif(countitem(Amethyst) >= 1, l("Amethyst Ring (+2 dex)")), L_Amethyst, + rif(countitem(Sapphire) >= 1, l("Sapphire Ring (+2 int)")), L_Sapphire, + rif(countitem(Topaz) >= 1 , l("Topaz Ring (+2 agi)")), L_Topaz, + + rif(countitem(Emerald) >= 1 , l("Emerald Ring (+2 luck)")), L_Emerald, + rif(countitem(Pearl) >= 3 , l("3x Pearl Ring (+1 agi/int/dex)")), L_Pearl, + rif(countitem(BlackPearl) >= 1, l("Black Pearl Ring (+1 str/vit/luk)")), L_BlackPearl, l("I don't have any gemstone or three pearls with me."), L_Close; // As usual, I don't care with cheaters, so if you try to cheat money or gemstones, YOU WILL LOSE ALL REAGENTS. No refunds. |