summaryrefslogblamecommitdiff
path: root/npc/tulimshar/barber.txt
blob: 83f999107d7a2e512761eca0c7a829e9b41c3447 (plain) (tree)
1
2
3
4
5
6

                                             
                                                                                                          


             









                                
                        



                    


                    


                    


                    



















                               


































                     
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;

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;

color:
	menu
	"Black",black,
	"Purple",purple,
	"Green",green,
	"Blue",blue,
	"Red",red,
	"Blonde",blonde,
	"Light blue",lightblue,
	"Gray",gray,
	"Brown",brown,
	"White",white,
	"No hair",nohair;

fine:
	close;

black:
	setlook 6,1;
	close;
purple:
	setlook 6,2;
	close;
green:
	setlook 6,3;
	close;
blue:
	setlook 6,4;
	close;
red:
	setlook 6,5;
	close;
blonde:
	setlook 6,6;
	close;
lightblue:
	setlook 6,7;
	close;
gray:
	setlook 6,8;
	close;
brown:
	setlook 6,9;
	close;
white:
	setlook 6,10;
	close;
nohair:
	setlook 6,11;
	close;
}