Can someone help? how to skipp episode chapter

Does anyone know the script to skip an episode chapter?

are you asking how to give the readers an option to skip?

1 Like

I think you might have to branch it

Yeah!!

try putting this into your script:

label skip_episode_option

NARRATOR
Would you like to skip this episode?

choice
“Yes, I want to skip this episode.” {
goto episode_skip_confirm
} “No, I do not want to skip this episode.” {
goto episode_no_skip_confirm
}

label episode_skip_confirm

NARRATOR
Are you sure you want to skip this episode?

choice
“Yes.” {
goto chapter_end
} “No.” {
goto skip_episode_option
}

label episode_no_skip_confirm

NARRATOR
Are you sure you don’t want to skip this episode?

choice
“Yes” {
} “No” {
goto skip_episode_option
}

for the very last line in your script, type:

label chapter_end

1 Like

Thank you!!! It Worked.

2 Likes

:cowboy_hat_face:

1 Like

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