How to put an skip options on your story?

Does anyone knows how make an skip options?

2 Likes

You mean like how to skip a whole chapter option?

could you explain what you mean?

Because if so yes here is what the code would look like.
choice “skip chapter”{
goto end_story (the label of the spot in the story you wanna go to)
}
“read this chapter.” {
continue
}

3 Likes

Yes

I want to skip options for like a scene

NARR
Would you like to skip the next scene?

choice
“Yes, I would like to SKIP the next scene.” {
goto after_scene
} “No, I would like to READ the next scene.” {
continue
}
############ SCENE GOES HERE ############

label after_scene

3 Likes

Moved to Directing Help and Tips since this is about coding. Make sure to check out our Forum Tutorial for more info about creating topics, and feel free to PM me if you’ve got questions. :smiley:

Did you try it

Thank you so much

1 Like

Not yet

oh ok let me know if that works. when you try it

1 Like

I will

1 Like

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