diff options
Diffstat (limited to 'npc/020-2/shops.txt')
-rw-r--r-- | npc/020-2/shops.txt | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/npc/020-2/shops.txt b/npc/020-2/shops.txt index b940e99f..74a8315d 100644 --- a/npc/020-2/shops.txt +++ b/npc/020-2/shops.txt @@ -10,8 +10,38 @@ mes "\"Well, pleasant journeys and I hope I haven't been too much of a bother. Good chatting with you.\""; close; } -020-2,25,65,0 shop Bracco NPC135,529:2,530:8000,521:500,603:1000 -020-2,75,24,0 shop Mede NPC103,501:25,502:35,567:250,568:250,826:120,827:240,828:480 +020-2,25,65,0 script Bracco NPC135,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem IronArrow; + sellitem ShortBow; + sellitem Dagger; + sellitem LeatherShield; + .distance = 5; + end; +} + +020-2,75,24,0 script Mede NPC103,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem CactusDrink; + sellitem CactusPotion; + sellitem IronPotion; + sellitem ConcentrationPotion; + sellitem SmallManaElixir, 120; + sellitem MediumManaElixir, 240; + sellitem LargeManaElixir, 480; + .distance = 5; + end; +} 020-2,111,23,0 script Kane NPC120,{ @npcname$ = "Kane the Inn Keeper"; |