Can someone help me do this?
What I want to do is I have a label called hair_and_makeup
Now I want the first two choices to pop up and it to be just Hair as one choice and Make-up as another choice. Within them two choices I want my few lip and hair choices to be placed for the readers to pick though…Can someone help me set it up?
This is what I have so far.
MILLY
(Now time to do my hair and make-up.)
label hair_and_makeup
choice
“Hair” {
}
“Make-up” {
}
But I have right down to what I want and only them colors and hair style…
label lip_hair
MILLY
(Now time to do my hair and make-up.)
choice
“Hair” {
goto hair_fem
}
“Make-up” {
goto lips_fem
} “Done” {
goto after_lip_hair
}
label hair_fem
#hair choices
#in every choice you need to add a goto hair_fem
#plus a “done” choice with a goto lip_hair
label lips_fem
#lipstick choices
#in every choice you need to add a goto lips_fem
#plus a “done” choice with a goto lip_hair
label after_lip_hair
Something like this could work
1 Like
Thank you so much
1 Like
(There was an error, I edited it now)
NAME
Text
choice
“1” {
NAME
Text
choice
“1” {
}
}
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.