Need help giving readers and option to read certain parts of the story

I’ve seen authors give readers the choice to read a disturbing or “mature” scenes. I am writing a story and I wanted to know if anyone has a script template or willing to share the coding to give readers the option to skip such scenes. In my story, I’m writing about a magical girl that has been tricked, held hostage and abused. I want to give readers the option to skip the details. Any help is appreciated :slightly_smiling_face:

1 Like

NARRTOR
Do you wanna hear a curse word
choice
“Yes” {
MC
Fuck you
}
“No” {
MC
Your fool

}

and that is the template

you just do it as a normal choice that is it, nothing more nothing less

Where would I put the line that the reader would jump to if they choose to skip?? I haven’t gotten into the choice coding just yet.

NARRATOR
Would you like to read the explicit scene?
choice
“Yes.” {
#explicit scene goes here
}
“No.” {
goto rest_of_story
}

label rest_of_story

OR

NARRATOR
Would you like to read the explicit scene?
“Yes.” {
#explicit scene goes here
}
“No.” {
}
#the rest of the story goes here

OR

NARRATOR
Would you like to read the explicit scene?
“Yes.” {
gain explicit_scene
}
“No.” {
}
if (explicit_scene) {
#explicit scene goes here
}
#the rest of the story goes here

so there are a lot of ways that you can go about doing this, those are just a few! good luck! :grin:

Help with Labels and Gains

HOW TO: Remember Past Choices (if/elif/else)

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