Unexpected CHOICEPARAMS: error

Hi, guys! Happy Thanksgiving if you celebrate, if not, then happy Thursday! Unsurprisingly, I’ve run into a coding error that I’m not sure how to fix. I’m sure it’s really simple, but I’m new to more advanced directing, so I don’t know what I’m doing wrong.

Here is the script that’s giving me the error:

label look_clues
NARRATOR
You have a chance to look for clues.
Pan the camera to keep looking.
tappable [pan1:2]
“MILITARY PHOTO FRAME” {
NARRATOR
Pause.
} “PSYCHIATRIST BUSINESS CARD” [
NARRATOR
Pause.
] “DONE LOOKING CIRCLE” [
NARRATOR
Are you sure you’re done looking for clues?
choice (done_looking)
“Yes!” {
continue
} “Wait, go back!” {
goto look_clues
}
]

The error I am getting is “Unexpected CHOICEPARAMS: NARRATOR Pause.” Obviously, the narrator saying pause is just a placeholder for now until I can code the rest. Does anyone know what I’m doing wrong?

The cause is the square bracket “[” you used on the choices.

} “PSYCHIATRIST BUSINESS CARD” {


Also,

tappable [pan:1:2]

} “DONE LOOKING CIRCLE” {

choice (done_looking)
“Yes!” {
goto continue
} “Wait, go back!” {
goto look_clues
}
}

1 Like

Oh, you’re right! facepalm Thank you so much! :blush:

1 Like

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