Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Deadpool209977

2
Posts
1
Topics
2
Following
A member registered Aug 13, 2019

Recent community posts

Oh. I just typed ren'py help in search and it came here lol!

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.