An example from a game I'm making:
Questions
Main character: Hmm what should I talk about. . .o( ▽)o[skipInput]
@choice "What made you study here?" goto:.Made
@choice "You come from Sweden right?" goto:.Sweden
@choice "What's your favorite season?" goto:.Season
@stop
Made
@set AskScore=AskScore+1
(TEXT)
@goto .Time if:"AskScore = 3"
@goto .Questions
Sweden
@set AskScore=AskScore+1
(TEXT)
@goto .Time if:"AskScore = 3"
@goto .Questions
Season
@set AskScore=AskScore+1
(TEXT)
@goto .Time if:"AskScore = 3"
@goto .Questions
Time
Friend: Oh, it's time to get back to the classroom.
After the player choosed three options the story progress. Would be nice if you can hide/clear the choice options one after one as the player choosed the questions :D