Oh. I just typed ren'py help in search and it came here lol!
Deadpool209977
2
Posts
1
Topics
2
Following
A member registered Aug 13, 2019
Recent community posts
itch.io Community » Game Development » General Development · Replied to No Time To Play in Basic code assistance
itch.io Community » Game Development » General Development · Created a new topic Basic code assistance
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.