diff options
author | Reid <reidyaro@gmail.com> | 2016-01-04 13:29:08 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-04 13:29:08 +0100 |
commit | a3a688ce7d8746ff2d4fd9268dbd594619e1a09f (patch) | |
tree | 149756e5347d2c06fd83e50b1a688f13deda5860 | |
parent | 9149b2f871d9244b4f8fc8f6c12bb65d34a36c7e (diff) | |
download | serverdata-a3a688ce7d8746ff2d4fd9268dbd594619e1a09f.tar.gz serverdata-a3a688ce7d8746ff2d4fd9268dbd594619e1a09f.tar.bz2 serverdata-a3a688ce7d8746ff2d4fd9268dbd594619e1a09f.tar.xz serverdata-a3a688ce7d8746ff2d4fd9268dbd594619e1a09f.zip |
Put a lower amount of item to sell on Fexil shop on the lost island.
-rw-r--r-- | npc/000-1/shop.txt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/npc/000-1/shop.txt b/npc/000-1/shop.txt index c0536763..2f0d8836 100644 --- a/npc/000-1/shop.txt +++ b/npc/000-1/shop.txt @@ -10,24 +10,24 @@ OnInit: tradertype(NST_MARKET); - sellitem PiouLegs, -1, 1000; - sellitem Bread, -1, 1000; - sellitem Croconut, -1, 1000; - sellitem Aquada, -1, 1000; - sellitem Armbands, -1, 1000; - sellitem LousyMoccasins, -1, 1000; - sellitem PiouSlayer, -1, 1000; + sellitem PiouLegs, -1, 15; + sellitem Bread, -1, 15; + sellitem Croconut, -1, 50; + sellitem Aquada, -1, 50; + sellitem Armbands, -1, 20; + sellitem LousyMoccasins, -1, 20; + sellitem PiouSlayer, -1, 15; - .sex = G_MALE; + .sex = G_OTHER; .distance = 2; end; OnClock0000: - restoreshopitem PiouLegs, 1000; - restoreshopitem Bread, 1000; - restoreshopitem Croconut, 1000; - restoreshopitem Aquada, 1000; - restoreshopitem Armbands, 1000; - restoreshopitem LousyMoccasins, 1000; - restoreshopitem PiouSlayer, 1000; + restoreshopitem PiouLegs, 15; + restoreshopitem Bread, 15; + restoreshopitem Croconut, 50; + restoreshopitem Aquada, 50; + restoreshopitem Armbands, 20; + restoreshopitem LousyMoccasins, 20; + restoreshopitem PiouSlayer, 15; } |