Help with coding. I'm new!

Use of labels & gotos -
For going back to main menu of choices , you have to use the command label just before the code for choices.
Then completing the scene for respective choice , add command goto , this will lead the readers back to the main choice menu.
label MENU
NARRATOR
What should I choose?
choice
“1st choice” {
#scene for 1st choice
goto MENU
} “2nd choice” {
#scene for 2nd choice
goto MENU
}
Check out the following thread for more insight on labels and gotos

Summary

Tara explains: Ifs, elses, gains, labels, gotos and the points system!

1 Like