summaryrefslogtreecommitdiff
path: root/npc/tulimshar/barber.txt
diff options
context:
space:
mode:
authorDennis Friis <peavey@placid.dk>2008-04-02 15:09:18 +0000
committerDennis Friis <peavey@placid.dk>2008-04-02 15:09:18 +0000
commit97bb21a79949779df76269b087f3bce7ef8179ee (patch)
tree08b3bdee2f3596581dd8d8f051afd37ee648cee7 /npc/tulimshar/barber.txt
parentdafdbbe9f1db3e6943003a79a6e23c00da2f2fe1 (diff)
downloadtmwa-97bb21a79949779df76269b087f3bce7ef8179ee.tar.gz
tmwa-97bb21a79949779df76269b087f3bce7ef8179ee.tar.bz2
tmwa-97bb21a79949779df76269b087f3bce7ef8179ee.tar.xz
tmwa-97bb21a79949779df76269b087f3bce7ef8179ee.zip
initial checkin
Diffstat (limited to 'npc/tulimshar/barber.txt')
-rw-r--r--npc/tulimshar/barber.txt89
1 files changed, 89 insertions, 0 deletions
diff --git a/npc/tulimshar/barber.txt b/npc/tulimshar/barber.txt
new file mode 100644
index 0000000..35104b2
--- /dev/null
+++ b/npc/tulimshar/barber.txt
@@ -0,0 +1,89 @@
+new_3-1.gat,102,31,0 script Barber 100,{
+ mes "[Barber]";
+ mes "I'm the greatest barber in the whole mana world! Would you like a change of style or color?";
+ next;
+
+ menu
+ "Change my style",style,
+ "Change my color",color,
+ "Nah I'm fine",fine;
+
+style:
+ menu
+ "Classic",style1,
+ "Curly",style2,
+ "Scruffy",style3,
+ "Slick",style4,
+ "Mohawk",style5,
+ "Uncombed",style6;
+
+style1:
+ setlook 1,1;
+ close;
+style2:
+ setlook 1,2;
+ close;
+style3:
+ setlook 1,3;
+ close;
+style4:
+ setlook 1,4;
+ close;
+style5:
+ setlook 1,5;
+ close;
+style6:
+ setlook 1,6;
+ close;
+
+color:
+ menu
+ "Orange",orange,
+ "Green",green,
+ "Red",red,
+ "Purple",purple,
+ "White",white,
+ "Blonde",blonde,
+ "Light blue",lightblue,
+ "Brown",brown,
+ "Blue",blue,
+ "Violet",violet,
+ "No hair",nohair;
+
+fine:
+ close;
+
+orange:
+ setlook 6,1;
+ close;
+green:
+ setlook 6,2;
+ close;
+red:
+ setlook 6,3;
+ close;
+purple:
+ setlook 6,4;
+ close;
+white:
+ setlook 6,5;
+ close;
+blonde:
+ setlook 6,6;
+ close;
+lightblue:
+ setlook 6,7;
+ close;
+brown:
+ setlook 6,8;
+ close;
+blue:
+ setlook 6,9;
+ close;
+violet:
+ setlook 6,10;
+ close;
+nohair:
+ setlook 6,11;
+ close;
+}