How to make a choice at the begining in my story, so they can choice if the want to read the new episode or the old one if they haven’t read it
label episode_story
NARR
This chapter has been updated. Would you like to read the previous version or the new one?
choice
“New Version”{
goto new_story
}“Previous Version”{
goto old_story
}
label new_story
NARR
Are you sure you want to read the new version?
choice
“Yeah!”{
goto new_plot
}“Wait! Let me go back…”{
goto episode_story
}
label old_story
NARR
Are you sure you want to read the previous version?
choice
“Yes!”{
goto old_plot
} “Wait! Let me go back…”{
goto episode_story
}
label new_plot
#insert whole script here for the new version of this story.
goto end_story
label old_plot
#insert whole script here for the previous version of this story.
goto end_story
label end_story
NARR
Thanks for reading!
Moved to Directing Helps and Tips since this is about scripting. Make sure to check out our Forum Tutorial for more info about where to correctly create topics, and feel to ask me if there are any questions.