summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-06-10 04:18:56 -0300
committerJesusaves <cpntb1@ymail.com>2021-06-10 04:18:56 -0300
commit2e926d6f31db49b6e7f95fcac79523f6bcd1f421 (patch)
tree8a35e611ea50ad064525b66ae0c8700a38ab4a60 /npc/functions
parent2575f51fa881e4258e797d2a5b19aeefaa5c2bff (diff)
downloadserverdata-2e926d6f31db49b6e7f95fcac79523f6bcd1f421.tar.gz
serverdata-2e926d6f31db49b6e7f95fcac79523f6bcd1f421.tar.bz2
serverdata-2e926d6f31db49b6e7f95fcac79523f6bcd1f421.tar.xz
serverdata-2e926d6f31db49b6e7f95fcac79523f6bcd1f421.zip
Fix some barber related stuff (follow up for Micksha's update in client data)
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/headstyles.txt83
1 files changed, 4 insertions, 79 deletions
diff --git a/npc/functions/headstyles.txt b/npc/functions/headstyles.txt
index dd4be8e7..b0791d91 100644
--- a/npc/functions/headstyles.txt
+++ b/npc/functions/headstyles.txt
@@ -23,79 +23,6 @@ L_RandomHair:
return;
}
-function script getHeadStyles {
- cleararray @HairStyles$, "", getarraysize(@HairStyles$);
- cleararray @HairColors$, "", getarraysize(@HairColors$);
-
- if (Class == 2) goto L_Tritan;
- else if (Class == 3) goto L_Ifriton;
- else if (Class == 4) goto L_Gispaan;
- else if (Class == 5) goto L_Sparron;
- else set Class, 1; // we can not style custom classes, so reset when using the barber
- goto L_Talpan;
-
-L_Talpan:
- setarray @HairStyles$[0],
- "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";
- setarray @HairColors$[0],
- "Brunette", "Green", "Dark red", "Light purple", "Gray", "Blonde",
- "Teal", "Light red", "Blue", "Dark purple", "Black", "Pink",
- "Brown";//, "(free slot)", "(free slot)";
- return;
-
-L_Tritan:
- setarray @HairStyles$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15",
- "16", "17", "18", "19", "20";
- setarray @HairColors$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15";
- return;
-
-L_Gispaan:
- setarray @HairStyles$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15",
- "16", "17", "18", "19", "20";
- setarray @HairColors$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15";
- return;
-
-L_Sparron:
- setarray @HairStyles$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15",
- "16", "17", "18", "19", "20";
- setarray @HairColors$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15";
- return;
-
-L_Ifriton:
- setarray @HairStyles$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15",
- "16", "17", "18", "19", "20";
- setarray @HairColors$[0],
- "1", "2", "3", "4", "5",
- "6", "7", "8", "9", "10",
- "11", "12", "13", "14", "15";
- return;
-}
-
// Hairstyle config
// set array of style and colors
- script hairstyle_config NPC_HIDDEN,{
@@ -110,12 +37,10 @@ OnInit:
"Imperial", "Side strand", "Messy", "Flat ponytail",
"Tapered Nape";
- setarray $@haircolor$[0], "Off black", "Ash brown", "Dark brown",
- "Dark copper", "Auburn brown", "Honey brown", "Copper blonde",
- "Golden blonde", "Pure platinum", "Cherry blossom", "Pinky pink",
- "Fire red", "Light violet", "Purple plum", "Navy blue",
- "Lagoon blue", "Twisted teal", "Spring Green", "Forest Green",
- "Silver Grey", "Esperia Blue";
+ setarray $@haircolor$[0], "Light Brown", "Green", "Red",
+ "Purple", "Gray", "Yellow", "Blue",
+ "Light Red", "Light Blue", "Dark Purple", "Black",
+ "Pink", "Brown", "Dark;
setarray $@REFEXP[0], 400, 900, 2250, 6500, 15000;
end;