diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-5/jeweler.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index e0253c1cf..5228f97e3 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -71,9 +71,9 @@ L_Gemstone: mes ""; mesn l("Inya, the Jeweler"); mesq l("Polished gemstones can be dragged and insert on rings. They'll give special stats to rings, but these gems cannot be removed easily."); - mesq l("I charge a service fee of 400 GP, and two gemstones."); + mesq l("I charge a service fee of @@ GP, and two gemstones.", 300); next; - if (Zeny < 400) { + if (Zeny < 300) { mesn l("Inya, the Jeweler"); mesq lg("You clearly don't have money, so let's not bother with that right now."); next; @@ -92,10 +92,10 @@ L_Gemstone: if (@menu == 1) goto L_Menu; -// As usual, I don't care with cheaters, so if you somehow cheat money or gemstones, YOU WILL LOSE ALL REAGENTS. No refunds. + // As usual, I don't care with cheaters, so if you somehow cheat money or gemstones, YOU WILL LOSE ALL REAGENTS. No refunds. inventoryplace PolishedDiamond-2+@menu, 1; delitem Diamond-2+@menu, 2; - Zeny=Zeny-400; + Zeny-=300; getitem PolishedDiamond-2+@menu, 1; getexp 800, 0; goto L_Menu; |