summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-01-17 04:59:37 +0100
committerReid <reidyaro@gmail.com>2016-01-17 04:59:37 +0100
commitd9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013 (patch)
treec7e58e969784728fd33352eebca82e9b30113760
parent68b894f691467e00a6def9188d4864cd942d23d0 (diff)
downloadserverdata-d9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013.tar.gz
serverdata-d9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013.tar.bz2
serverdata-d9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013.tar.xz
serverdata-d9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013.zip
Add Lydon script.
-rw-r--r--npc/001-2-27/_import.txt1
-rw-r--r--npc/001-2-27/lydon.txt37
2 files changed, 38 insertions, 0 deletions
diff --git a/npc/001-2-27/_import.txt b/npc/001-2-27/_import.txt
index e19df117..ca4ba52d 100644
--- a/npc/001-2-27/_import.txt
+++ b/npc/001-2-27/_import.txt
@@ -3,4 +3,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/lydon.txt
npc: npc/001-2-27/shop.txt
diff --git a/npc/001-2-27/lydon.txt b/npc/001-2-27/lydon.txt
new file mode 100644
index 00000000..6221616c
--- /dev/null
+++ b/npc/001-2-27/lydon.txt
@@ -0,0 +1,37 @@
+// Evol scripts.
+// Author:
+// Reid
+// Description:
+// Lydon is the Weapon seller in Don's Blacksmith house on Artis.
+
+001-2-27,43,28,0 script Lydon#001-2-27 NPC_LYDON,{
+ speech 4,
+ l("Hi customer! What do you want today?");
+
+ switch (select (
+ l("Let's make a trade."),
+ l("Who is the blacksmith outside?"),
+ l("Bye.")))
+ {
+ case 1:
+ closedialog;
+ shop "Store#Weapon001-2-27";
+ close;
+ case 2:
+ speech 5,
+ l("Chef? He is Don's apprentice, he works on his hammering skill day and night."),
+ l("He is very lucky that Don took him under his wing, but being the student of such a teacher is not easy every day!");
+ break;
+ case 3:
+ break;
+ }
+
+ goodbye;
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 4;
+ end;
+}
+