diff options
-rw-r--r-- | npc/003-1/ninathetraveler.txt | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/npc/003-1/ninathetraveler.txt b/npc/003-1/ninathetraveler.txt index 5a3ae8ac1..9a6fdd244 100644 --- a/npc/003-1/ninathetraveler.txt +++ b/npc/003-1/ninathetraveler.txt @@ -4,7 +4,7 @@ // Description: // The Travelers travel around the world telling stories. -003-1,56,143,0 script Nina The Traveler NPC_F_SHOPKEEPER,{ +003-1,56,143,0 script Nina The Traveler NPC_FEMALE,{ mesn; if (strcharinfo(0) == $MOST_HEROIC$) mesq l("Wow! Are you @@? Everyone, in every city, talks about you!", $MOST_HEROIC$); @@ -12,7 +12,7 @@ mesq l("Hello. I am @@, and I am from a family of travellers. We travel though the whole world, looking for exotic goods.", .name$); next; - mesq l("You can right click on me to trade, or I can tell you about different cities in our world."); + mesq l("You can buy rare items with me, or I can tell you about different cities in our world."); L_Menu: mes ""; @@ -127,8 +127,8 @@ L_Trade: mesn; mesq l("Use your @@ as currency!", getitemlink(StrangeCoin)); next; - openshop "AerosTrader"; - close2; + openshop "Aeros Trader"; + closedialog; L_Close: close; @@ -142,20 +142,8 @@ OnInit: setunitdata(.@npcId, UDT_HAIRSTYLE, 27); setunitdata(.@npcId, UDT_HAIRCOLOR, 11); - // Exotic Goods - tradertype(NST_MARKET); - sellitem CherryCake, 300, 5; - sellitem ChocolateMouboo, 5000, 2; - //sellitem Barrel, 50000, 1; - .sex = G_FEMALE; .distance = 5; end; - -OnClock0000: -OnClock1200: - restoreshopitem CherryCake, 300, 3; - restoreshopitem ChocolateMouboo, 5000, 2; - end; } |