summaryrefslogtreecommitdiff
path: root/npc/functions/barber.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/barber.txt')
-rw-r--r--npc/functions/barber.txt20
1 files changed, 5 insertions, 15 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index 0edaab73..57c3c598 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -6,10 +6,9 @@ function script Barber {
"Change my color", L_Color,
"Nah, I'm fine", L_Done;
+ goto L_Done;
+
L_Style:
- if (Sex == 0) goto L_Style_Female;
-
-L_Style_Male:
menu
"Bald", -,
"Ponytail", -,
@@ -18,27 +17,18 @@ L_Style_Male:
"Emo", -,
"Mohawk", -,
"Pompadour", -,
- "Center parting", -,
- "Supprise me", -,
- "Nah, I'm fine", close;
- goto L_Process_Style;
-
-L_Style_Female:
- menu
- "Bald", -,
+ "Center parting/Short and slick", -,
"Long and slick", -,
"Short and curly", -,
- "Ponytail", -,
- "Pigtails", -,
"Long and curly", -,
+ "Pigtails", -,
"Parted", -,
- "Short and slick", -,
"Supprise me", -,
"Nah, I'm fine", L_Done;
L_Process_Style:
set @style, @menu - 1;
- if (@style == 8) set @style, rand(8);
+ if (@style == 13) set @style, rand(13);
setlook 1, @style;
return;