I am doing a mini game in my story with tappable overlays and the script won’t continue even with using labels and the goto.
label wire_game
tappable
“BLUE WIRE” {
@overlay KNIFE shifts to -4 205 in zone 1 in 3
@pause for 0.3
@overlay EXPLOSION opacity 1 in 0.2 AND overlay EXPLOSION shifts to -464 -141 in 0.2 AND overlay EXPLOSION scales to 7.145 7.145 in 0.2
@pause for 0.1
INT. BLACK - DAY
@pause for 2
NARR
Wrong wire.
Try again.
goto wire_game
}“GREEN WIRE” {
@overlay KNIFE shifts to 53 247 in zone 1 in 3
NARR
Correct wire!
goto after_wire_game
}“RED WIRE” {
@overlay KNIFE shifts to -4 205 in zone 1 in 3
@pause for 0.3
@overlay EXPLOSION opacity 1 in 0.2 AND overlay EXPLOSION shifts to -464 -141 in 0.2 AND overlay EXPLOSION scales to 7.145 7.145 in 0.2
@pause for 0.1
INT. BLACK - DAY
@pause for 2
NARR
Wrong wire.
Try again.
goto wire_game
}
label after_wire_game
NARR
Good job.
The correct answer which uses the label after_wire_game works fine and continues the script, but the ones that use wire_game won’t let the reader go back to try again. Any help would be great.