diff options
author | Reid <reidyaro@gmail.com> | 2016-01-17 04:00:46 +0100 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2016-01-17 04:00:46 +0100 |
commit | 47d04b9869bd9cbd18987909d2ececb6cd0d157f (patch) | |
tree | acc8b70b88d57cac247bf447556c62b7c31e057b | |
parent | 3edb5d31baeeaa5bbfa6a49e7c1901ed1feb63e0 (diff) | |
download | serverdata-47d04b9869bd9cbd18987909d2ececb6cd0d157f.tar.gz serverdata-47d04b9869bd9cbd18987909d2ececb6cd0d157f.tar.bz2 serverdata-47d04b9869bd9cbd18987909d2ececb6cd0d157f.tar.xz serverdata-47d04b9869bd9cbd18987909d2ececb6cd0d157f.zip |
Add Kaylo on the Blacksmith's house.
-rw-r--r-- | npc/001-2-27/_import.txt | 2 | ||||
-rw-r--r-- | npc/001-2-27/kaylo.txt | 41 |
2 files changed, 43 insertions, 0 deletions
diff --git a/npc/001-2-27/_import.txt b/npc/001-2-27/_import.txt index 7a16c39e..e19df117 100644 --- a/npc/001-2-27/_import.txt +++ b/npc/001-2-27/_import.txt @@ -2,3 +2,5 @@ npc: npc/001-2-27/mapflags.txt npc: npc/001-2-27/_warps.txt npc: npc/001-2-27/don.txt +npc: npc/001-2-27/kaylo.txt +npc: npc/001-2-27/shop.txt diff --git a/npc/001-2-27/kaylo.txt b/npc/001-2-27/kaylo.txt new file mode 100644 index 00000000..0f9d8292 --- /dev/null +++ b/npc/001-2-27/kaylo.txt @@ -0,0 +1,41 @@ +// Evol scripts. +// Author: +// Reid +// Description: +// Kaylo is the Shield seller in Don's Blacksmith house on Artis. + +001-2-27,27,28,0 script Kaylo#001-2-27 NPC_KAYLO,{ + speech 4, + l("Hi customer! What do you want today?"); + + switch (select ( + l("Let's make a trade."), + l("What's wrong with your clothes?"), + l("What is this place?"))) + { + case 1: + closedialog; + shop "Store#Shield001-2-27"; + close; + case 2: + speech 5, + l("I used a card to improve my clothes."), + l("There're two different kinds of card, the first changes the style of your clothes, the second changes their stats."), + l("You should discuss with Don and Calypsan if you want to learn more about it, they are master on this area!"); + break; + case 3: + speech 5, + l("You are on the Blacksmith's house, by Jove!"), + l("Don is a renowned blacksmith throughout Andorra it's crazy that you don't know about him."); + break; + } + + goodbye; + close; + +OnInit: + .sex = G_MALE; + .distance = 4; + end; +} + |