How do I give readers an option to skip a chapter if I made changes?

How do I give readers a chance to skip a chapter?

1 Like

You would need to use a goto label

what is the coding for it?

put this on the top of you script and change the chapter number mine said’s 7

label skip_episode

    NARRATOR
I had to make some changes in this episode. Do you wish to re-read it or skip it?

choice
“Reread”{

    NARRATOR
Are you sure you want to read ep 7?

choice
“Yes”{

    NARRATOR
Here you go!

goto ep_7starts

}“No”{

    NARRATOR
Ok!

goto skip_episode

}
}“Skip”{

    NARRATOR
Are you sure you want to skip ep 7?

choice
“Yes”{

    NARRATOR
Ok!

goto ep7_end

}“No”{

    NARRATOR
Ok

goto skip_episode

}
}

label ep_7starts

Put this at the end of your script
}

label ep7_end

do I put the label start right before I put the script?

Yes

It’s now saying the label can’t contain a space…

Never mine I fixed it, thank you :slight_smile:

1 Like