Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(-1)

Hey friend. I noticed that when I try to view my stats on the computer in the game, an error appears. I fixed this by modifying the game/script.rpy file on line 20 with the following:

def get_adult_scenes_unlocked(who):

        count = 0

        inc = 0

        while inc < len(who):

            # Change 'who' to 'who[inc]' to refer to the current girl in the loop

            if "devon" in who[inc].prefix and who[inc].level > 0:

                count += len(who[inc].scene_list)

            elif "devon" not in who[inc].prefix:

                count += len(who[inc].scene_list)

            inc += 1

        return count


I hope this helps you in some way. :)