diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-10 11:45:37 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-10 11:45:37 -0300 |
commit | 7679e5994642ef019d850b92ee74e564fefd2e57 (patch) | |
tree | 8b97ec3c2581908837ea039979fe6f6b3181c17f /npc/036-2/shops.txt | |
parent | f810899c0006e86f46c3e0122ea5b9ec5ea7dfd8 (diff) | |
download | serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.gz serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.bz2 serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.tar.xz serverdata-7679e5994642ef019d850b92ee74e564fefd2e57.zip |
Cleanup all shops. This makes CI passable! (At least in a real environment)
Diffstat (limited to 'npc/036-2/shops.txt')
-rw-r--r-- | npc/036-2/shops.txt | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/npc/036-2/shops.txt b/npc/036-2/shops.txt index de381bd8..15292e15 100644 --- a/npc/036-2/shops.txt +++ b/npc/036-2/shops.txt @@ -1,6 +1,30 @@ -036-2,23,38,0 shop Chef Armand NPC211,539:87,676:200,503:10 -036-2,35,22,0 shop Gunney NPC138,1199:4,529:4 +036-2,23,38,0 script Chef Armand NPC211,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Beer; + sellitem Steak, 250; + sellitem CasinoCoins; + .distance = 5; + end; +} + +036-2,35,22,0 script Gunney NPC138,{ + shop .name$; + goodbye; + close; + +OnInit: + tradertype(NST_ZENY); + sellitem Arrow, 3; + sellitem IronArrow, 4; + .distance = 5; + end; +} 036-2,23,35,0 script Bunkmaster Daban NPC212,{ @npcname$ = "Bunkmaster Daban"; |