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?
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!