Scene Help Needed ASP (LL) Choices

i decided to give my readers a choice to choose where my characters have their first date but I need a choice thing that will let them choose which scene they want to see

1 Like

Well… I guess you could write it something like this:

CHARACTER
Where do you want to go?
choice(date)
“Go to the beach!” {
goto beachdate
}
“Go out to dinner!” {
goto dinnerdate
}

And then put the corresponding label at the scene you’ve written. OR you could put the scenes directly into the choices.

I think you might want to have a name for the choice (I put date), or a flag to gain, because then you can reference it later! Like,

if(date is “Go to the beach!”) {
CHARACTER
Didn’t we have a great time at the beach last week?
} elif(date is “Go out to dinner!”) {
CHARACTER
Didn’t we have a nice dinner together last week?
}

Or whatever you want to do.

Hope this helps? I wasn’t totally sure what you were asking.

1 Like

yeah thank you <3

where do i put the label?

At some point later in the script! You put the label before whatever scene you write, it’s like a street sign or something, the goto says where to go and the label says where it is.

You’ll probably also need a goto and label for after the scene ends, to sort of merge back into the main story. :slight_smile:

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