can someone help me with my choice error? It keeps saying that “choices must follow dialog immediately, not a branch” but right after my choice I have dialog so I don’t really understand.
Complete all your choices and then you can go back to them to edit.
Well I only have one choice right now and I can’t play my story to view it so I don’t really understand
Try completing your first choice then end it with a }. so that you can preview your story and edit what happens in the choice.
The choice does end with a } already
screen shot?
Dialogue needs to go before the choice, it doesn’t work if it goes after the choice.
the dialogue must be ABOVE the choice :
NARR
What do you want to do
choice
OH!!! I have it now, thank you! I totally forgot about that part😊
Hey I have a choice error can someone help me please?
what error you have and can you show your script?
tappable “DONE” {
&ui DONE shifts to 387 119 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui LIPS shifts to -100 160 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui NOSE shifts to -100 195 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui EYES shifts to -100 230 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui BROWS shifts to -100 265 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui HAIR shifts to -100 300 in zone 1 in 0.6 using easeout
@pause for 0.2
&ui FACE shifts to -100 335 in zone 1 in 0.6 using easeout
@pause for 0.2
@ui BODY shifts to -100 370 in zone 1 in 0.6 using easeout
choice “I slay!” {
goto end
} “ew,no way” {
goto cc
}
and what error or problem you have
It says choices must follow dialog immediately not a branch
lol yeah Now I see it when you tagged me.
you need dialogue above your choice:
NARR
Do you like it?
choice “I slay”{
…
that means you have goto end but you forgot to add label end so the goto cant send reader to place you wanted him to send
@Farah_DeSantis
NARRATOR
Is this the look for her?
choice “Yes she is hot!” {
label end
} “Ew, no way” {
goto cc
}
Like this?