diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-16 15:07:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-16 15:07:26 -0300 |
commit | 21d9c7726d52e297cfd2a23edfef4318341e866a (patch) | |
tree | 297cfbc5dddf0071a1511ad3cd505a83c88482bb /npc/003-1/ninathetraveler.txt | |
parent | af1f71ea695244ba37e1eef35c25588f3b5d4454 (diff) | |
download | serverdata-21d9c7726d52e297cfd2a23edfef4318341e866a.tar.gz serverdata-21d9c7726d52e297cfd2a23edfef4318341e866a.tar.bz2 serverdata-21d9c7726d52e297cfd2a23edfef4318341e866a.tar.xz serverdata-21d9c7726d52e297cfd2a23edfef4318341e866a.zip |
Correct bugs at Nina
Diffstat (limited to 'npc/003-1/ninathetraveler.txt')
-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; } |