diff options
Diffstat (limited to 'npc/003-5')
-rw-r--r-- | npc/003-5/jeweler.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index 56a13ff56..e2cf8b01c 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -28,14 +28,16 @@ L_Menu: L_Craft: mes ""; mesn; - mesq l("Of course, you can trade a couple of @@ for a @@.", getitemlink(GoldPieces), getitemlink(GoldenRing)); + mesq l("Of course, you can trade a @@, with 200 GP, for a @@.", getitemlink(GoldPieces), getitemlink(GoldenRing)); next; menu - rif(countitem(GoldPieces) >= 2, l("")), -, + rif(countitem(GoldPieces) >= 1 && Zeny >= 200, l("Yes, deal. Gimme the ring.")), -, l("...I'll be back later."), L_Close; inventoryplace GoldenRing, 1; delitem GoldPieces, 2; + Zeny=Zeny-200; + getitem GoldenRing, 1; getexp 100, 25; mes ""; |