Does anyone know how to fix this code?

SKIP EPISODE {

INT. BG_FOF

&speechbubble is 162 249 to 89%

label skip_episode_option

    NARRATOR
| bold , animation:shuffle-sideways |READ CAREFULLY!
| bold |Would you like to skip this episode?

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

label episode_skip_confirm

    NARRATOR
| bold , italic |Are you sure you want to skip this episode?

choice
“| italic |Yes, take me to episode two.” {
goto chapter_end
} “| italic |No, I would like to read episode one.” {
goto skip_episode_option
}

label episode_no_skip_confirm

    NARRATOR
| bold , italic |Are you sure you don't want to skip this episode?

choice
“| italic |Yes, let me read episode one.” {
} “| italic |No, take me to episode two.” {
goto skip_episode_option
}

}

label chapter_end

INT. BG_FOF

&speechbubble is 162 249 to 89%

label skip_episode_option

NARRATOR

| bold , animation:shuffle-sideways |READ CAREFULLY!
| bold |Would you like to skip this episode?

choice
“|italic|Yes, I want to skip this episode.” {
NARRATOR
| bold , italic |Are you sure you want to skip this episode?
choice
“| italic|No, let me read this episode.” {
goto read_episode
} “| italic |Yes, take me to episode two.” {
goto episode_end
}
} “|italic|No, I do not want to skip this episode.” {
goto read_episode
}

label read_episode
Here you write your episode

label episode_end


The only thing I did, was making your second question into a nested choice. What does this mean?
When "Yes, I want to skip this episode.” is clicked, they go onto the question whether they are sure. If they choose to read, they go to the flag read_episode, else they are taken to the end of the episode…

Hope this helps!

2 Likes

thank u so much!!!

1 Like

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