diff options
Diffstat (limited to 'npc/003-5/jeweler.txt')
-rw-r--r-- | npc/003-5/jeweler.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index fc8191707..8d5d57331 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -15,7 +15,7 @@ // Still pending discussion. 003-5,33,37,0 script Jeweler NPC_FEMALE,{ - mesn; + mesn l("Inya, the Jeweler"); mesq l("Hello!"); goto L_Menu; @@ -34,7 +34,7 @@ L_Menu: L_Craft: mes ""; - mesn; + mesn l("Inya, the Jeweler"); mesq l("Of course, I actually have two options:"); mes l("- 5 @@, with 12000 GP, for a @@.", getitemlink(GoldPieces), getitemlink(GoldenRing)); mes l("- 5 @@, with 12000 GP, for a @@.", getitemlink(SilverIngot), getitemlink(SilverRing)); // TODO @@ -61,19 +61,19 @@ L_Craft: break; } mes ""; - mesn; + mesn l("Inya, the Jeweler"); mesq l("Here you go! Anything else?"); next; goto L_Menu; L_Gemstone: mes ""; - mesn; + 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 2000 GP, and two gemstones."); next; if (Zeny < 2000) { - mesn; + mesn l("Inya, the Jeweler"); mesq lg("You clearly don't have money, so let's not bother with that right now."); next; goto L_Menu; |