From d9373ba6e0e30fa1ebd5bade0d0b3930e0b8f013 Mon Sep 17 00:00:00 2001 From: Reid Date: Sun, 17 Jan 2016 04:59:37 +0100 Subject: Add Lydon script. --- npc/001-2-27/_import.txt | 1 + npc/001-2-27/lydon.txt | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 npc/001-2-27/lydon.txt (limited to 'npc/001-2-27') 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; +} + -- cgit v1.2.3-60-g2f50