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.