yolo.14
November 18, 2020, 6:41pm
1
this is my error:
Unexpected block end: Did you forget the { which goes with }, or forget to put the word “choice” at the start of this choice option.
heres my script:
AUTHOR (applaud_happy_offset_loop)
Question time!
label qandaconfirmation
NARR
Would you like to skip the Q and A?
choice
“Yes, I’ve already looked through them.” {
goto endofchapter
}
} “No, I would like to go through the Q and A.” {
goto continuewithqanda
@pause for a beat
label confirmation
Ldn
November 18, 2020, 6:46pm
4
here is what it should look like.
} “No, I would like to go through the Q and A.” {
goto continuewithqanda
}
Copy that into your script, or simply add the }, which is what you were missing.
2 Likes
Ldn
November 18, 2020, 9:14pm
6
yolo.14:
goto endofchapter
}
Delete the “}” here, it should be fine after that.
1 Like
choice
“Yes, I’ve already looked through them.” {
goto endofchapter
} “No, I would like to go through the Q and A.” {
goto continuewithqanda
}
@pause for a beat
label confirmation
Try this one
2 Likes