diff options
author | Reid <reidyaro@gmail.com> | 2016-01-17 04:00:35 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-17 04:00:35 +0100 |
commit | 3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0 (patch) | |
tree | 79b1ac9fdba8f7f95a6bccc2a2ddc8b6845cb10e | |
parent | e6d90c3efce2a81f1e63b2cd16fb6e9dff63ec46 (diff) | |
download | serverdata-3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0.tar.gz serverdata-3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0.tar.bz2 serverdata-3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0.tar.xz serverdata-3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0.zip |
Add Kaylo's shop.
-rw-r--r-- | npc/001-2-27/shop.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/npc/001-2-27/shop.txt b/npc/001-2-27/shop.txt new file mode 100644 index 00000000..eb337e84 --- /dev/null +++ b/npc/001-2-27/shop.txt @@ -0,0 +1,25 @@ +// Evol scripts. +// Author: +// Reid +// 4144 +// Description: +// Blacksmith shops + +001-2-27,27,29,0 trader Store#Shield001-2-27 NPC_NO_SPRITE,{ + +OnInit: + tradertype(NST_MARKET); + + sellitem LeatherShield, -1, 30; + + .sex = G_OTHER; + .distance = 2; + end; + +OnClock0000: + sellitem LeatherShield, -1, 10; +OnClock0800: + sellitem LeatherShield, -1, 10; +OnClock01600: + sellitem LeatherShield, -1, 10; +} |