Do I use "goto" in my script or...?

Can read this on labels and gotos:

A label leads to a goto it shares the same name with. You can have multiple gotos leading to a label. However, keep in mind, within your episode, your labels need to have different names, since you want to avoid duplicate labels.

Also, when it comes to giving the reader an option to skip, keep this in mind:

Here’s an example:

NARR
Would you like to customize yourself?

choice
“Yep”{
goto customize_you
}“Nope”{
goto skip_custom
}

label customize_you
#script for cc goes here.
goto skip_custom

label skip_custom
#storyline goes here

1 Like