diff options
author | Reid <reidyaro@gmail.com> | 2016-01-25 02:14:56 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-25 02:14:56 +0100 |
commit | c6efe4c4e3d832bf94f2c3408381818c4ba69ab5 (patch) | |
tree | 3af678ca53df90350da82623f50590043ee8e2af /npc | |
parent | a16368357d60cf19b97167eac2a56329e4f0870f (diff) | |
download | serverdata-c6efe4c4e3d832bf94f2c3408381818c4ba69ab5.tar.gz serverdata-c6efe4c4e3d832bf94f2c3408381818c4ba69ab5.tar.bz2 serverdata-c6efe4c4e3d832bf94f2c3408381818c4ba69ab5.tar.xz serverdata-c6efe4c4e3d832bf94f2c3408381818c4ba69ab5.zip |
Fix blacksmiths shops (replace sellitem with restoreshopitem).
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-2-27/shop.txt | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/npc/001-2-27/shop.txt b/npc/001-2-27/shop.txt index f8b597ae..eeabc098 100644 --- a/npc/001-2-27/shop.txt +++ b/npc/001-2-27/shop.txt @@ -19,17 +19,17 @@ OnInit: end; OnClock0000: - sellitem LeatherShield, -1, 10; - sellitem CopperArmbands, -1, 9; - sellitem IronArmbands, -1, 7; + restoreshopitem LeatherShield, 10; + restoreshopitem CopperArmbands, 9; + restoreshopitem IronArmbands, 7; OnClock0800: - sellitem LeatherShield, -1, 10; - sellitem CopperArmbands, -1, 6; - sellitem IronArmbands, -1, 3; + restoreshopitem LeatherShield, 10; + restoreshopitem CopperArmbands, 6; + restoreshopitem IronArmbands, 3; OnClock01600: - sellitem LeatherShield, -1, 10; - sellitem CopperArmbands, -1, 8; - sellitem IronArmbands, -1, 6; + restoreshopitem LeatherShield, 10; + restoreshopitem CopperArmbands, 8; + restoreshopitem IronArmbands, 6; } 001-2-27,43,29,0 trader Store#Weapon001-2-27 NPC_NO_SPRITE,{ @@ -46,15 +46,15 @@ OnInit: end; OnClock0000: - sellitem PiouSlayer, -1, 25; - sellitem TrainingGladius, -1, 8; - sellitem WoodenSword, -1, 25; + restoreshopitem PiouSlayer, 25; + restoreshopitem TrainingGladius, 8; + restoreshopitem WoodenSword, 25; OnClock0800: - sellitem PiouSlayer, -1, 25; - sellitem TrainingGladius, -1, 8; - sellitem WoodenSword, -1, 25; + restoreshopitem PiouSlayer, 25; + restoreshopitem TrainingGladius, 8; + restoreshopitem WoodenSword, 25; OnClock01600: - sellitem PiouSlayer, -1, 25; - sellitem TrainingGladius, -1, 8; - sellitem WoodenSword, -1, 25; + restoreshopitem PiouSlayer, 25; + restoreshopitem TrainingGladius, 8; + restoreshopitem WoodenSword, 25; } |