Can someone tell me if there is a possible way of previewing my script when I have choices inside choices? It always says “theres no “}” on one of the choices” but I didn’t finish that choice yet? If anyone can help, thank you!
1 Like
You have to close all the brackets before saving or it will always show an error
here is the layout of a choice
choice
“Blue” {
} “Green” {
} “Red” {
}
Hopefully that helps
1 Like
Here is an example:
NARRATOR
Do you want to check your points?
choice
“Yes” {
NARRATOR
That’s great. Which points would you like to check?
choice
“Relationship with Father” {
Input content
} “Relationship with love interest.” {
Input content
}
} “No” {
}
Things to remember:
- There should always be an even number of flower brackets.
- Always close the bracket that you open.
Hope this helps.
2 Likes