Small Hairstyle template (HELP?) 🥺

I’m not great at coding (but I’m trying lol) and I’m not sure how to code this.

So In my first episode for an upcoming story I want there to be an option for the player to choose to keep the characters hair up or down when she’s getting ready.

DOWN - long down wavy princess braid
UP - long up so wavy princess braid

But I’m not sure how to code these 2 options only (I don’t want to have the option to have every style for my MC)

Anyone know how I can code the option to choose one of 2 hairstyles?

1 Like

label hairstyle
NARRATOR
Choose a hairstyle:
choice
“Hair down” {
@ CHARACTER is primp_neutral
@ CHARACTER changes hair into Long Down Wavy Princess Braid
NARRATOR
Do you like this hairstyle?
choice
“Yes, I look amazing!” {
goto hairstyle_end
}“Let me see the other option” {
goto hairstyle
}
}“Hair up” {
@ CHARACTER is primp_neutral
@ CHARACTER changes hair into Long Up Wavy Princess Braid
NARRATOR
Do you like this hairstyle?
choice
“Yes, I look amazing!” {
goto hairstyle_end
}“Let me see the other option” {
goto hairstyle
}
}
label hairstyle_end
CHARACTER (talk_excited_happy)
I look bomb!

1 Like

Thank you :pray::heart::heart:

1 Like

No problem :hugs: :tulip:

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