summaryrefslogtreecommitdiff
path: root/npc/001-2-0/shop.txt
diff options
context:
space:
mode:
authorSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
committerSaulc <lucashelaine14@gmail.com>2018-02-18 02:08:36 +0100
commit26faa9a208a15ea858f5069a4c0d92e8a0709bdb (patch)
tree7ef0a6a5e39cb63f72ea9a6742f5a4cb320b41b4 /npc/001-2-0/shop.txt
parentb9416a07a0f085c64888ac02fecd47d43feee218 (diff)
downloadserverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.gz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.bz2
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.tar.xz
serverdata-26faa9a208a15ea858f5069a4c0d92e8a0709bdb.zip
delete evol maps
Diffstat (limited to 'npc/001-2-0/shop.txt')
-rw-r--r--npc/001-2-0/shop.txt35
1 files changed, 0 insertions, 35 deletions
diff --git a/npc/001-2-0/shop.txt b/npc/001-2-0/shop.txt
deleted file mode 100644
index 9fe97b17e..000000000
--- a/npc/001-2-0/shop.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-// Evol scripts.
-// Authors:
-// 4144
-// Reid
-// Description:
-// Light armor shop.
-
-001-2-0,37,29,0 trader Store#001-2-0 NPC_NO_SPRITE,{
-// The ArtisTankTop should be store at x: 39 or 40, y: 31.
-// 38,35 is server's location of where client displays a black torso gear on display. (using @where for server).
-// 35,27 is some shelves and a cabinet at 4 tiles from where player select it.
-// 39,27 is where to put store that sells only fabric. (the cloth shelf).
-OnInit:
- tradertype(NST_MARKET);
-
- sellitem ArtisTankTop, -1, 50;
- sellitem VneckJumper, -1, 30;
- sellitem BrownTrousers, -1, 30;
- sellitem BrimmedHat, -1, 35;
-
- .sex = G_OTHER;
- .distance = 2;
- end;
-
-OnClock0000:
- restoreshopitem ArtisTankTop, 30;
- restoreshopitem VneckJumper, 12;
- restoreshopitem BrownTrousers, 15;
- restoreshopitem BrimmedHat, 10;
-OnClock1200:
- restoreshopitem ArtisTankTop, 25;
- restoreshopitem VneckJumper, 10;
- restoreshopitem BrownTrousers, 10;
- restoreshopitem BrimmedHat, 20;
-}