summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/headstyles.txt
diff options
context:
space:
mode:
authormekolat <mekolat@gmail.com>2014-08-25 14:57:28 -0400
committermekolat <mekolat@gmail.com>2014-10-23 00:17:05 -0400
commitf6ea0570134ad364006c4d70c98dd15b2a059ed0 (patch)
treed211fbf94baf2ea1c07f423063821c2ca03c3295 /world/map/npc/functions/headstyles.txt
parent50e70491ff4595f299ee737f68d718175597e08d (diff)
downloadserverdata-f6ea0570134ad364006c4d70c98dd15b2a059ed0.tar.gz
serverdata-f6ea0570134ad364006c4d70c98dd15b2a059ed0.tar.bz2
serverdata-f6ea0570134ad364006c4d70c98dd15b2a059ed0.tar.xz
serverdata-f6ea0570134ad364006c4d70c98dd15b2a059ed0.zip
fix barber and mirror for future classes
Diffstat (limited to 'world/map/npc/functions/headstyles.txt')
-rw-r--r--world/map/npc/functions/headstyles.txt54
1 files changed, 54 insertions, 0 deletions
diff --git a/world/map/npc/functions/headstyles.txt b/world/map/npc/functions/headstyles.txt
new file mode 100644
index 00000000..cdba58fc
--- /dev/null
+++ b/world/map/npc/functions/headstyles.txt
@@ -0,0 +1,54 @@
+// 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 == 1) // TRITAN (fish)
+ setarray @HairStyles$,
+ "no fins", "fins 1", "fins 2", "fins 3", "fins 4";
+
+ if(Class == 2) // GISPAAN (demon)
+ setarray @HairStyles$,
+ "no horns", "horns 1", "horns 2", "horns 3", "horns 4", "horns 5";
+
+ if(Class == 3) // SPARRON (orc)
+ setarray @HairStyles$,
+ "bald";
+
+ 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)";
+
+ if(Class == 1) // TRITAN (fish)
+ setarray @HairColors$,
+ "Green", "Blue", "Light blue", "Dark purple", "Black";//, "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)";
+
+ if(Class == 2) // GISPAAN (demon)
+ setarray @HairColors$,
+ "Light brown", "Red", "Gray", "Yellow", "Light red";//, "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)";
+
+ if(Class == 3) // SPARRON (orc)
+ setarray @HairColors$,
+ "(no colors yet)";//, "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)", "(free slot)",
+ //"(free slot)", "(free slot)", "(free slot)";
+ return;
+}