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
|
// headstyles config file
// author: meko
function|script|getHeadStyles|,
{
set @HairStyles$, 0;
set @HairColors$, 0;
cleararray @HairStyles$, "", getarraysize(@HairStyles$);
cleararray @HairColors$, "", getarraysize(@HairColors$);
if(Class == 0)
setarray @HairStyles$, // TALPONIAN (human)
"Bald", "Flat ponytail", "Bowl cut", "Combed back", "Emo", "Mohawk",
"Pompadour", "Center parting/Short and slick", "Long and slick",
"Short and curly", "Pigtails", "Long and curly", "Parted",
"Perky ponytail", "Wave", "Mane", "Bun", "Shoulder Length Flick",
"Fizzy", "Long and Clipped";
if(Class == 0)
setarray @HairColors$, // TALPONIAN (human)
"Brunette", "Green", "Dark red", "Light purple", "Gray", "Blonde",
"Teal", "Light red", "Blue", "Dark purple", "Black", "Pink",
"Brown";//, "(free slot)", "(free slot)";
// adding a new species is as simple as adding another if(Class == X)
return;
}
|