Help with skipping a chapter

Hello! I need help with my line of coding. I’m trying to skip a whole episode chapter. Here is my line of code

Remove the space between the =

chapter one dialogue and the }

Should look like this =

    NARRATOR
chapter one

}

1 Like

the ending label should be at the end of the episode
so on line 35 you wanna put
goto chapter_end

then at the last line of the script create the label
label chapter_end
INT. BACKGROUND
NARRATOR
See you next episode.

1 Like

you mixed label and goto command. :slight_smile:
In menu write goto chapter_end

and at the end of the whole story just above the last narrator add the label

menu (in which is the goto)
#whole chapter
label chapter_end
NARR
To be continued

2 Likes

Thank you guys! One last question…

add

NARR
To be continued

or some command under it

1 Like

Under fast forward?

no under the goto you have at the end of the story

1 Like

wait a moment…

1 Like

sorry my mistake I was too quick

in the brackets you cant have anything under the goto - since after this command reader moves elswhere

you as it seems forgot the closing bracket under the goto

delete the word menu on line 37 (it was an example where you have your whole menu not a command) :smiley:
And write

}

instead of it

1 Like

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