Hi please I really need help how do you do that directing were if you update a chapter and you want your readers to be able to pick if they want to read it or not
You could use a label…
for eg.:
choice
Do you want to read this chapter?
“NO” {
goto end
} “YES” {
goto chapter
And you could create corresponding labels. Sorry if you didn’t understand I’m terrible at explaining stuff, just ask me again if it’s still not clear.
label begin
NARR
Would u like to read this chapter, it’s been updated?
choice
“Yes”{
goto read_one
}“No”{
goto read_two
}
label read_one
NARR
Are you sure you’d like to read?
choice
“Yes, i’m sure”{
goto read_story
}“No, take me back”{
goto begin
}
label read_two
NARR
Are you sure you’d like to skip?
choice
“Yes, i’m sure”{
goto end
}“No, take me back”{
goto begin
}
label read_story
#all of the script for the episode goes here
label end
#ending messages
P.S I recommend to check out: HOW TO: Labels and Gotos đź–¤