I know how to create a label and use goto’s and stuff but I’m making a looping label that allows the reader to choose between two choices that will either kill them or make them survive. The looping works when they choose the incorrect choice but for the label that they DO survive, how do i end it so that the story just continues but not inside that label?
oh like how the story keeps replaying
choice (CHOICE)
“Surviving Choice” {
}
“Kill Choice” {
(so this one loops back to the choice since they chose wrong)
}
if (CHOICE is “Surviving Choice” ) {
} else {
}
1 Like
Create a new label. And use a goto.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.