Choice minigames

How do I place in a choice mini-game?
I want to do something where there are characters in a school hallway and they have to choose between 2-3 doors to walk into where a different scenario plays out.
Can anyone help?
Or provide me with a template?

Thank you!

Write the choice and then for each option write the seperate scenes with a label at the start. Then for the choices write go to (label) and it will take them to that scene. E g


This is for customising characters but it is just so that you can see the script
Hope this helps :blush:

Moved to Directing Helps and Tips since this is about coding. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to PM me if there are any questions. :wink:

label doorchoice

NARRATOR
Which door do you want?

choice
“Door 1” {
goto door1
} “Door 2” {
goto door2
} “Door 3” {
goto door3
}

label door1
INT. BACKGROUND - DAY
&CHARACTER1 enters from left to screen left
@CHARACTER2 enters from left to screen center

NARRATOR
Scenario 1.

goto merge
#if you want the reader to open all of the doors use ‘redo doorchoice’ and have an option in the original choice for having selected all of the doors

label door2
INT. BACKGROUND - DAY
&CHARACTER1 enters from left to screen left
@CHARACTER2 enters from left to screen center

NARRATOR
Scenario 2.

goto merge
label door3
INT. BACKGROUND - DAY
&CHARACTER1 enters from left to screen left
@CHARACTER2 enters from left to screen center

NARRATOR
Scenario 3.

label merge

NARRATOR
This will probably be the characters back out in the main hallway.

lemme know if you need any extra help

Thank you so much. This was very helpful!
Is there a way to place the choices above the doors?
Or highlight the doors so the readers know which door is door 1, 2 and 3?

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