Customise Hair in choice in a chapter - HELP WANTED

Hi guys
I am wanting to give my readers a chance to change the character’s hair style (limelight)
But I am getting errors, I have attached what I’ve done below, can someone check it and see where I am going wrong please? Thanks in advance :slight_smile:

label femlcc_custom_x

    NARRATOR
It's time to change Katie's look.  Which hairstyle would you like to give Katie?

choice
“Hairstyle” {
goto femlcc_hair_x
} “This is perfect!” {
goto femlcc_x_end
}

label femlcc_hair_x

    NARRATOR
All hairstyles.

choice
“Shorter Hair Styles”{
goto femlcc_hairShort_x
}“Long Hair”{
goto femlcc_hairLong_x
}“Styled Hair”{
goto femlcc_hairUp_x
}“Done”{
goto femlcc_custom_x
}

label femlcc_hairShort_x

    NARRATOR
Shorter hairstyles.

choice [shouldPaginate: YES]
“Wavey Bob” {
@KATIE changes hair into Layered Wavy Bob
goto femlcc_hairShort_x
} “Short Wavy” {
@KATIE changes hair into Short Wavy Asymmetrical
goto femlcc_hairShort_x
} “Classic Bob” {
@KATIE changes hair into Classic Bob
goto femlcc_hairShort_x
} “Straight Medium” {
@KATIE changes hair into Straight Medium
goto femlcc_hairShort_x
}“Back to Styles”{
goto femlcc_hair_x
}“Done”{
goto femlcc_custom_x
}

label femlcc_hairLong_x

    NARRATOR
Longer hairstyles.

choice [shouldPaginate: YES]
“Bouffant Long Wavy” {
@KATIE changes hair into Bouffant Long Wavy
goto femlcc_hairShort_x
} “Long Curls” {
@KATIE changes hair into Long Curls
goto femlcc_hairShort_x
} “Long Double Dutch Braids” {
@KATIE changes hair into Long Double Dutch Braids
goto femlcc_hairShort_x
} “Long Feathered Bangs Blunt” {
@KATIE changes hair into Long Feathered Bangs Blunt
goto femlcc_hairShort_x
}“Back to Styles”{
goto femlcc_hair_x
}“Done”{
goto femlcc_custom_x
}

label femlcc_hairUp_x

    NARRATOR
Shorter hairstyles.

choice [shouldPaginate: YES]
“Long High Ponytail” {
@KATIE changes hair into Long High Ponytail
goto femlcc_hairShort_x
} “Over Shoulder Braid” {
@KATIE changes hair into Over Shoulder Braid
goto femlcc_hairShort_x
} “Pony Tail Blunt Bangs” {
@KATIE changes hair into Pony Tail Blunt Bangs
goto femlcc_hairShort_x
} “Side Swept Updo Long” {
@KATIE changes hair into Side Swept Updo Long
goto femlcc_hairShort_x
}“Back to Styles”{
goto femlcc_hair_x
}“Done”{
goto femlcc_custom_x
}

label end_hairlip

    NARRATOR
Is this the look you're going for?

choice
“Yes!” {
} “No, let me change something” {
goto hair_lip
}

@Dara.Amarie

What is the error?

goto femlcc_x_end (near the top)
and
label end_femlcc_custom_x (near the end)

What is the error message?

Says they don’t exist

So it looks like you’ve combined one of my limited cc templates with my hair/lip template, which is why you must be getting errors because the labels and goto’s don’t match. If you want just a hairstyle template go here: Hair and Lipstick Templates (INK & Limelight)

Sorry, It took me so long to write mine out, I’m struggling copying and pasting and it’s getting more muddled up :confused:
Any chance you could send me a template with the choices I chose in my script please

NARRATOR
Shorter hairstyles

choice [shouldPaginate: YES]
“Wavey Bob” {
@KATIE changes hair into Layered Wavy Bob
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Short Wavy” { <<I’VE GOT AN X HERE (says unexpected block end)
@KATIE changes hair into Short Wavy Asymmetrical
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}

This is what I have now but on the “Short Wavy” line choice it says unexpected block, will it do this for all the choices?

label femlcc_custom_x

    NARRATOR
It's time to change Katie's look.  Which hairstyle would you like to give Katie?

choice
“Yes, let’s change it!” {
goto hair_styles
} “No, keep my current hairstyle.” {
NARRATOR
Are you sure you don’t want to change it?
choice
“Yes, I’m sure.” {
goto after_hair_change
} “Actually, let’s change it!” {
goto hair_styles
}
}

label hair_styles

    NARRATOR
All hairstyles.

choice
“Short Hair”{
goto hair_styles_Short
}“Long Hair”{
goto hair_styles_Long
}“Styled Hair”{
goto hair_styles_Up
}“Done”{
goto hair_change_end
}

label hair_styles_Short

    NARRATOR
Shorter hairstyles

choice [shouldPaginate: YES]
“Wavey Bob” {
@KATIE changes hair into Layered Wavy Bob
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Short Wavy” {
@KATIE changes hair into Short Wavy Asymmetrical
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Classic Bob” {
@KATIE changes hair into Classic Bob
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Straight Medium” {
@KATIE changes hair into Straight Medium
goto hair_styles_Short
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}

label hair_styles_Long

    NARRATOR
Longer hairstyles

choice [shouldPaginate: YES]
“Bouffant Long Wavy” {
@KATIE changes hair into Bouffant Long Wavy
goto hair_styles_Long
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Long Curls” {
@KATIE changes hair into Long Curls
goto hair_styles_Long
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Long Double Dutch Braids” {
@KATIE changes hair into Long Double Dutch Braids
goto hair_styles_Long
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Long Feathered Bangs Blunt” {
@KATIE changes hair into Long Feathered Bangs Blunt
goto hair_styles_Long
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}

label hair_styles_Up

    NARRATOR
Up-dos

choice [shouldPaginate: YES]
“Long High Ponytail” {
@KATIE changes hair into Long High Ponytail
goto hair_styles_Up
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Over Shoulder Braid” {
@KATIE changes hair into Over Shoulder Braid
goto femlcc_hairShort_x
} “Pony Tail Blunt Bangs” {
@KATIE changes hair into Pony Tail Blunt Bangs
goto hair_styles_Up
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}
} “Side Swept Updo Long” {
@KATIE changes hair into Side Swept Updo Long
goto hair_styles_Up
}“Back to Styles”{
goto hair_styles
}“Done”{
goto hair_change_end
}

label hair_change_end

    NARRATOR
Is this the look you're going for?

choice
“Yes, I look perfect!” {
readerMessage Follow @dara.amarie.ep on Instagram! with messageTitle Hair Template Credit
@FEMALEAVATAR is blush_shy
goto after_hair_change
} “No, I want to try a different style.” {
goto hair_styles
}

label after_hair_change

Request here: Limited CC Templates & Workshop!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.