diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-01 19:26:02 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-01 19:26:02 -0300 |
commit | 09510d786445ed82bc2a8725a4653b2638cb8ac6 (patch) | |
tree | 2420cef9104f7ace262b0c2d18bcfea9d53066ed /npc/003-1/shop.txt | |
parent | 075a5c7d0f597f835fd0cd49de1bdb2cc38a3a0b (diff) | |
download | serverdata-09510d786445ed82bc2a8725a4653b2638cb8ac6.tar.gz serverdata-09510d786445ed82bc2a8725a4653b2638cb8ac6.tar.bz2 serverdata-09510d786445ed82bc2a8725a4653b2638cb8ac6.tar.xz serverdata-09510d786445ed82bc2a8725a4653b2638cb8ac6.zip |
All NST_MARKET shops should be restocking roughly every 6 hours.
Diffstat (limited to 'npc/003-1/shop.txt')
-rw-r--r-- | npc/003-1/shop.txt | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/npc/003-1/shop.txt b/npc/003-1/shop.txt index 1abed4e68..1dee03cc8 100644 --- a/npc/003-1/shop.txt +++ b/npc/003-1/shop.txt @@ -7,21 +7,24 @@ OnInit: tradertype(NST_MARKET); - sellitem YellowCottonDye, -1, 3; + sellitem YellowCottonDye, -1, 2; sellitem Knife, -1, 5; sellitem Arrow, -1, 30000; - sellitem DesertHat, -1, 10; + sellitem DesertHat, -1, 8; sellitem Bread, -1, 15; .sex = G_OTHER; .distance = 3; end; +OnClock0621: +OnClock1210: +OnClock1757: OnClock0000: - restoreshopitem YellowCottonDye, 3; + restoreshopitem YellowCottonDye, 2; restoreshopitem Knife, 5; restoreshopitem Arrow, 30000; - restoreshopitem DesertHat, 10; + restoreshopitem DesertHat, 8; restoreshopitem Bread, 15; } |