"Are you done reading" choice

goto QandA

    NARRATOR
Are you done reading?

choice
} “Yes!” {

@pause for 0.1

choice
} “I need more time!” {

@pause for 5

goto QandA

}

Hi guys! I am not familiar with choices as this is my first story and I am putting a text backround. I want to know how to make it so you can choose if you are done reading or not, but I don’t really know how that would be scripted. Once you are done reading I want it to return to the previous backround. I tried this which is totally off because I am getting a bunch of errors. Hope this makes sense. Thanks!

2 Likes

bump?

Can you post a picture of what errors you are getting?

1 Like

Unexpected block end: Did you forget the {which goes with this} , or forget to put the word “choice” at the start of this choice option?

Idk how to take a screenshot with this keyboard but I wrote it!

It seems like you put a bracket in front of the first choice, which doesn’t have a branch to start. You may want to remove that.

Narrator
Are you done reading?

choice “Yes” {

@pause for 0.1

} “ I need more time.” {

@pause for 5

}

How would that look?

I want it to loop back in the I need more time choice. Sorry for not explaining that

1 Like

so like @pause for 5 then I want it to ask the same question again

1 Like
label QandA
#-------Q&A code here--------

         Narrator
    Are you done reading?

choice
"Yes!" {
@pause for 0.1
} "I need more time" {
@pause for 5
goto QandA
}
1 Like

I’ll let you know if that works! ty

Ok, I had to make a few changes to that but I got it! If anyone else is having the same issue this is what I did:

@pause for 6

label QandA

   NARRATOR
Are you done reading?

choice
“Yes!” {
@pause for 0.1
} “I need more time!” {
@pause for 6
goto QandA
}

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