1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
new_3-1.gat,102,31,0 script Nicolas 100,{
mes "[Nicolas the 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:
if (Sex == 0) goto style_female;
style_male:
menu
"bald",style0,
"ponytail",style1,
"bowl cut",style2,
"combed back",style3,
"emo",style4,
"mohawk",style5,
"pompadour",style6,
"center parting",style7;
style_female:
menu
"bald",style0,
"long and slick",style1,
"short and curly",style2,
"ponytail",style3,
"pigtails",style4,
"long and curly",style5,
"parted",style6,
"short and slick",style7;
style0:
setlook 1,0;
close;
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;
style7:
setlook 1,7;
close;
style8:
setlook 1,8;
close;
color:
menu
"brunette",color0,
"green",color1,
"dark red",color2,
"light purple",color3,
"gray",color4,
"blonde",color5,
"teal",color6,
"light red",color7,
"blue",color8,
"dark purple",color9;
fine:
close;
color0:
setlook 6,0;
close;
color1:
setlook 6,1;
close;
color2:
setlook 6,2;
close;
color3:
setlook 6,3;
close;
color4:
setlook 6,4;
close;
color5:
setlook 6,5;
close;
color6:
setlook 6,6;
close;
color7:
setlook 6,7;
close;
color8:
setlook 6,8;
close;
color9:
setlook 6,9;
close;
color10:
setlook 6,10;
close;
}
|