diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:02:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-29 09:51:13 -0300 |
commit | ba57119a2123a754a44a91ed4d34fa624eb24cd8 (patch) | |
tree | 3a671aba901dbac4b088c7d67a5d99e271cb3c0b | |
parent | 0ab4a268af8d431105282d13a68d1823a26d52e1 (diff) | |
download | serverdata-ba57119a2123a754a44a91ed4d34fa624eb24cd8.tar.gz serverdata-ba57119a2123a754a44a91ed4d34fa624eb24cd8.tar.bz2 serverdata-ba57119a2123a754a44a91ed4d34fa624eb24cd8.tar.xz serverdata-ba57119a2123a754a44a91ed4d34fa624eb24cd8.zip |
Remove Gold Pieces drops, re-struct Jeweler
-rw-r--r-- | db/re/mob_db.conf | 5 | ||||
-rw-r--r-- | npc/003-5/jeweler.txt | 16 |
2 files changed, 16 insertions, 5 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index ad4331fc4..703bfbd58 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -2296,7 +2296,6 @@ mob_db: ( ScorpionClaw: 120 Candy: 100 ChocolateBar: 51 - GoldPieces: 1 } }, { @@ -2348,7 +2347,6 @@ mob_db: ( ChocolateBar: 100 FancyHat: 26 ShortBow: 12 - GoldPieces: 2 } }, { @@ -2395,7 +2393,6 @@ mob_db: ( Candy: 100 ScorpionClaw: 90 ScorpionClaw: 70 - GoldPieces: 1 } }, { @@ -4937,7 +4934,6 @@ mob_db: ( ChocolateBar: 90 FancyHat: 25 ShortBow: 11 - GoldPieces: 2 } }, { @@ -4986,7 +4982,6 @@ mob_db: ( Candy: 900 BugLeg: 100 ChocolateBar: 50 - GoldPieces: 1 } }, { diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index 90779ad67..20d1a2dc9 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -3,12 +3,27 @@ // Jesusalva // Description: // Sells and crafts jewels +// +// Notes: +// Gold Ore (dropped by bifs) → Pieces or Ingot, depends on what you want to forge +// Jeweler only works with Gold PIECES. The Ingots are for forges. 003-5,33,37,0 script Jeweler NPC_FEMALE,{ + mesn; + mesq l("Hello!"); + mes ""; + menu + l("I want to shop."), -, + l("Nothing, sorry."), L_Close; + openshop; closedialog; close; +L_Close: + close2; + goodbye; + end; OnInit: .@npcId = getnpcid(0, .name$); @@ -22,6 +37,7 @@ OnInit: .sex = G_FEMALE; .distance = 5; + tradertype(NST_ZENY); sellitem WeddingRing, 5000; end; |