diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-05-29 10:18:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-05-29 10:18:36 -0300 |
commit | 7fd85fa6d337eccc99cc9963eb76c1f6cc0b592c (patch) | |
tree | 0d44bae9c84a224373d35d7b365dc33e4e922158 | |
parent | 4b0117a685b92a64c3c91fd3fdceff001e77882d (diff) | |
download | serverdata-7fd85fa6d337eccc99cc9963eb76c1f6cc0b592c.tar.gz serverdata-7fd85fa6d337eccc99cc9963eb76c1f6cc0b592c.tar.bz2 serverdata-7fd85fa6d337eccc99cc9963eb76c1f6cc0b592c.tar.xz serverdata-7fd85fa6d337eccc99cc9963eb76c1f6cc0b592c.zip |
Change jeweler price from 400 GP to 300 GP
-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; |