Anybody got any idea as to why I keep getting errors, the error says 'Choices must follow dialogue immediately not a branch I’ll bold the line thats got the error.
CHLOE (think)
Now should I do something with my hair?
choice
“Hair”{
goto hair
}
“I’m done!”{
Should I do something with my |color:red| hair and lipstick?
choice
“Yes”{
goto hairstyle_lipstick_game
}
“No”{
goto end
}
label hairstyle_lipstick_game
NARRATOR
Lets get started.
label hairstyles_game
CHLOE (think)
What should I do with my hair?
choice
“Fishtail Braid” { @CHLOE changes hair into Fishtail Braid
goto hairstyles_game
}“Diva Curls” { @CHLOE changes hair into Diva Curls
goto hairstyles_game
}“Straight” { @CHLOE changes hair into Straight
goto hairstyles_game
}“Lets go to Lipsticks”{
goto lipstick_game
} “Done” {
goto end
}
label lipstick_game
CHLOE (think)
Now which lipstick color?
choice
“Raven”{ @CHLOE changes mouthColor into Raven
goto lipstick_game
} “Bordeaux” { @CHLOE changes mouthColor into Bordeaux
goto lipstick_game
} “Ruby Red” { @CHLOE changes mouthColor into Ruby Red
goto lipstick_game
} “Done” {
goto end
}
label end
NARRATOR
Are you happy with how you look?
choice
“Yes, I look gorgeous!” { @CHLOE is primp_condescend
} “No I want to change something” {
goto hairstyle_lipstick_game
}
Moved to Directing Helps and Tips since it’s about coding. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to PM me if there are any questions.