Here is what I have:
default choices = []
default do_susan = False
label start:
# stay inside this loop as long as we didn't pick all the 3 choices (cell, electric torture, breaker bench)
if len(choices) < 3:
# alter between True and False
do_susan = not do_susan
if do_susan:
"What would you like to train Susan on next?"
else:
"What would you like to train Chandra on now?"
menu:
Just don't know where to go from here.
Any help would be appreciated.