So I have this scene where the main character is reading a note, and I wanted to have that thing where the author can ask if the reader is done reading or not. How would I go about making that choice so that if the reader says no, it pauses for a few more seconds?
This is what it looks like in my script:
" NARRATOR
Do you need more time?
choice
“Yes” {
@pause for 10
} “No” {
}"
1 Like
Thank you.
of course <3
I would reccommemd you to create a label, so if the reader didn’t finished reading in the plus 10 seconds, he can countinue until he finish.
1 Like
The code will look like this:
"label reading_note
@pause for 10
NARR
Did you finished reading?
choice
“Yes” {
[Go on with the story]
} “No” {
goto reading_note
}"
So it will reapet itself every time a reader choose “no”.
Thank you
2 Likes