HELP! Ending Choice?

So, you know those choices most authors have at the end of the story? I dunno how to make one can someone help??

[spoiler]It usually goes something like this:

           NARRATOR  "End Of story"

choice
“Credits”{
all the credits here
} “Extra Scene”{
add extras here

} “End Episode”

or im assuming it’s coded like that

and then after “end episode” the loop of choices ends…
idk how to do it, if someone could guide me…or even maybe…make a template for me?

[/spoiler]

1 Like

hi, you need to make layers like this
label end_of_story

           NARRATOR  "End Of story"

choice
“Credits”{
goto credits
} “Extra Scene”{
goto extra_scene

} “End Episode” {
goto end
}

label credits
all credits here
goto end

label extra_scene
extra scene here
goto end

label end
NARR
To be continued

1 Like

Thank You!!!

1 Like

you’re welcome :smiling_face_with_three_hearts:

1 Like

So I’ve played around with the “template” you gave me but I was wondering how to get it back to the menu after choosing “credits” and “extra scene”? Like how do i get it to start over and then when the reader chooses “end episode” the episode is done??

What I did:

EXT. GRIFFITH PARK - DAY

    NARRATOR
End of Episode

choice
“About Moi, the Author”{
goto author
} “Extra Scene”{
goto extra_scene

} “End Episode” {
goto end
}

label author

@AJAY stands screen center

    AJAY (frighten_boo)
BOO!
    AJAY (idle_hypnotized_loop)
This is my first episode story that has gotten this far, blah, blah, blah, most of ya'll don't care bout this bein my first episode
Leave fan mail, an feedback if ya want.
I have no schedule, this episode it's self took like a week and it's only 600 and sumthin lines..

goto end

label extra_scene

    NARRATOR
There is no extra scene for this episode.

goto end

label end

    NARRATOR

To be continued

1 Like

You have to put in goto end, goto choice
Before the choices you have to put a label like idk
Label options

And in credits and extra scene you have to put
Goto options

1 Like

Ohh

Tell me if this function, I use this to make more than 1 choice like credits

1 Like

Okay, thanks! Whenever I get the chance to edit my story I’ll let you know!

1 Like