summaryrefslogtreecommitdiff
path: root/npc/functions
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-01 14:17:33 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-01 14:17:33 -0300
commit69eb06640606e950bfe0d60b1be980aebca74e91 (patch)
tree0d2195ab68f53fd578023ca47d6f321f87b42264 /npc/functions
parent8475167670c2e58a8448184c9abbf21e2174d557 (diff)
downloadserverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.gz
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.bz2
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.tar.xz
serverdata-69eb06640606e950bfe0d60b1be980aebca74e91.zip
Fix some hairy issues ;-)
Diffstat (limited to 'npc/functions')
-rw-r--r--npc/functions/barber.txt4
-rw-r--r--npc/functions/headstyles.txt25
2 files changed, 27 insertions, 2 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index 0626029c..9827f388 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -19,10 +19,10 @@ function script BarberSayStyle {
switch (getarg(0, 3))
{
case 1:
- message strcharinfo(0), l("@@", .@style_name$);
+ message strcharinfo(0), l("%s", .@style_name$);
break;
case 2:
- message strcharinfo(0), l("@@", .@color_name$);
+ message strcharinfo(0), l("%s", .@color_name$);
break;
case 3:
speech S_FIRST_BLANK_LINE | S_LAST_NEXT,
diff --git a/npc/functions/headstyles.txt b/npc/functions/headstyles.txt
index 91395fd1..dd4be8e7 100644
--- a/npc/functions/headstyles.txt
+++ b/npc/functions/headstyles.txt
@@ -95,3 +95,28 @@ L_Ifriton:
"11", "12", "13", "14", "15";
return;
}
+
+// Hairstyle config
+// set array of style and colors
+- script hairstyle_config NPC_HIDDEN,{
+ end;
+
+OnInit:
+ setarray $@hairstyle$[0], "(none)", "Bald", "Bowl cut", "Combed back",
+ "Emo", "Mohawk", "Pompadour", "Center parting", "Long and slick",
+ "Short and curly", "Pigtails", "Long and curly", "Parted",
+ "Perky ponytail", "Wave", "Mane", "Bun", "Wavy", "Bunches",
+ "Long ponytail", "Infinitely long", "Choppy", "Wild", "Punk",
+ "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 $@REFEXP[0], 400, 900, 2250, 6500, 15000;
+ end;
+}