diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-11 14:37:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-11 14:37:13 -0300 |
commit | f445b8e5d0e7cdec1438a07ff769db52a070295b (patch) | |
tree | 1ef5accdef640e490cc48df46078229f0e5bf960 | |
parent | fa9907d2ee9508e35b3e00716b9919902b86b6cd (diff) | |
download | serverdata-f445b8e5d0e7cdec1438a07ff769db52a070295b.tar.gz serverdata-f445b8e5d0e7cdec1438a07ff769db52a070295b.tar.bz2 serverdata-f445b8e5d0e7cdec1438a07ff769db52a070295b.tar.xz serverdata-f445b8e5d0e7cdec1438a07ff769db52a070295b.zip |
All restoreshopitem now for three args
-rw-r--r-- | npc/003-1/ninathetraveler.txt | 4 | ||||
-rw-r--r-- | npc/003-1/shop.txt | 12 | ||||
-rw-r--r-- | npc/005-4/shop.txt | 10 | ||||
-rw-r--r-- | npc/005-5/nylo.txt | 2 | ||||
-rw-r--r-- | npc/005-6/morgan.txt | 6 |
5 files changed, 17 insertions, 17 deletions
diff --git a/npc/003-1/ninathetraveler.txt b/npc/003-1/ninathetraveler.txt index d08ccde83..5ac94fac7 100644 --- a/npc/003-1/ninathetraveler.txt +++ b/npc/003-1/ninathetraveler.txt @@ -149,8 +149,8 @@ OnInit: OnClock0000: OnClock1200: - restoreshopitem CherryCake, 3; - restoreshopitem ChocolateMouboo, 2; + restoreshopitem CherryCake, 300, 3; + restoreshopitem ChocolateMouboo, 5000, 2; end; } diff --git a/npc/003-1/shop.txt b/npc/003-1/shop.txt index 16a44d674..41c3c0856 100644 --- a/npc/003-1/shop.txt +++ b/npc/003-1/shop.txt @@ -22,11 +22,11 @@ OnClock0621: OnClock1210: OnClock1757: OnClock0000: - restoreshopitem YellowCottonDye, 2; - restoreshopitem Knife, 5; - restoreshopitem Arrow, 30000; - restoreshopitem DesertHat, 8; - restoreshopitem SilkRobe, 1; - restoreshopitem Bread, 15; + restoreshopitem YellowCottonDye, -1, 2; + restoreshopitem Knife, -1, 5; + restoreshopitem Arrow, -1, 30000; + restoreshopitem DesertHat, -1, 8; + restoreshopitem SilkRobe, -1, 1; + restoreshopitem Bread, -1, 15; } diff --git a/npc/005-4/shop.txt b/npc/005-4/shop.txt index 0cb69e54f..fbf8c6dfb 100644 --- a/npc/005-4/shop.txt +++ b/npc/005-4/shop.txt @@ -33,10 +33,10 @@ OnClock0602: OnClock1206: OnClock1811: OnClock0004: - restoreshopitem RoundLeatherShield, 2; - restoreshopitem SmallKnife, 5; - restoreshopitem TolchiArrow, 30000; - restoreshopitem LousyMoccasins, 4; - restoreshopitem TrainingBow, 3; + restoreshopitem RoundLeatherShield, -1, 2; + restoreshopitem SmallKnife, -1, 5; + restoreshopitem TolchiArrow, -1, 30000; + restoreshopitem LousyMoccasins, -1, 4; + restoreshopitem TrainingBow, -1, 3; } diff --git a/npc/005-5/nylo.txt b/npc/005-5/nylo.txt index 5e1a041cb..e17a23770 100644 --- a/npc/005-5/nylo.txt +++ b/npc/005-5/nylo.txt @@ -190,6 +190,6 @@ OnClock0600: OnClock1200: OnClock1800: OnClock0000: - restoreshopitem Beer, 100; + restoreshopitem Beer, 350, 100; } diff --git a/npc/005-6/morgan.txt b/npc/005-6/morgan.txt index 0bf0a3396..69d1c92d7 100644 --- a/npc/005-6/morgan.txt +++ b/npc/005-6/morgan.txt @@ -52,7 +52,7 @@ OnClock0556: OnClock1201: OnClock1759: OnClock0003: - restoreshopitem CottonCloth, 7; - restoreshopitem Fungus, 10; - restoreshopitem Bread, 15; + restoreshopitem CottonCloth, 200, 7; + restoreshopitem Fungus, -1, 10; + restoreshopitem Bread, -1, 15; } |