Skip to main content

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

OliMir

1
Posts
1
Following
A member registered Sep 14, 2025

Recent community posts

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. :)