What is wrong with this?

label text_choice
readerMessage Make sure to choose carefully
NARRATOR
Who do you want to get a text from?
choice
“Dan” {
NARRATOR (YOU)
Are you sure?
choice “Yes” {
goto text_fromdan
gain text_dan
}
“option2” {
goto text_choice
gain text_dan
}
} “Cam - the doctor” {
NARRATOR (YOU)
Are you sure?
choice “Yes” {
goto text_fromcam
} “No” {
goto label text_choice
}
gain text_cam
}
label text_fromdan

label text_fromcam

1 Like

@lizzy.writes

1 Like

Goto’s must always be the last thing inside of brackets. Place the gains before the gotos

1 Like

Thank you

@Dara.Amarie hey there thank you for answering but there is still an error

Remove that bracket that’s right before the word choice. There should not be a bracket there.

1 Like

Thank You

1 Like

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