Mod Ren'Py Milfy City [v1.0e] Content Restoration Mod

Powerbabe

Member
Game Developer
Aug 1, 2018
355
3,303
459
(


Overview:
Fully restores the game's removed content and adds additional alternative or missing dialog that aligns with the main theme of the game's school setting and the theme of incest.

DO NOT Apply any other Incest Patch or LEWDPATCHER.

Updated: 11/12/2025
Game/Creator: ICSTOR
Modder: Powerbabe
Mod Version: 0.6
Game Version: v1.0e
Language: English

Features:
You don't have permission to view the spoiler content. Log in or register now.

Installation:
You don't have permission to view the spoiler content. Log in or register now.

Change-Log:
You don't have permission to view the spoiler content. Log in or register now.

Download: - -
 
Last edited:
Jan 18, 2021
498
1,031
258
Really great mod. Thanks!

I noticed a bug in this version 0.6: it is possible to become stuck early on Liza's path when trying to clean the pool. The bucket is visible next to the pool, but clicking on it results in a message "Cleaning stuff has to be selected."

The pool minigame does not start and is not skipped either. I had disabled the minigames but trying to re-enable the minigames does not help. Once that bug is triggered, there is no way to progress with Liza. I did a quick run through the whole game and I managed to reach the end for all characters except Liza.

I had a look at the code of the mod and then I enabled the console to see what was going on. The problem seems to be with the variable Li_clean_stuff.selected that is always False. I see two files (game/scripts/A_home/Outside/Pool/M/a_pool_M_scr.rpy and ame/scripts/A_home/Outside/Pool/D/a_pool_D_scr.rpy) that contain the following lines:
Python:
            if clickable == True and Li_clean_stuff.selected:
                action [Hide("displayTextScreen"),Jump("pool_minigame_start0")]

            if clickable == True and Li_clean_stuff.selected == False:
                action [Hide("displayTextScreen"),Jump("pool_minigame_not_selected")]
                # ...
This jumps to pool_minigame_not_selected (in game/scripts/pool_minigame.rpy), which displays the message "Cleaning stuff has to be selected."

Using the console to force the value Li_clean_stuff.selected to True allows the minigame to start and it is then possible to complete Liza's path.
 
  • Like
Reactions: Powerbabe

Powerbabe

Member
Game Developer
Aug 1, 2018
355
3,303
459
Really great mod. Thanks!

I noticed a bug in this version 0.6: it is possible to become stuck early on Liza's path when trying to clean the pool. The bucket is visible next to the pool, but clicking on it results in a message "Cleaning stuff has to be selected."

The pool minigame does not start and is not skipped either. I had disabled the minigames but trying to re-enable the minigames does not help. Once that bug is triggered, there is no way to progress with Liza. I did a quick run through the whole game and I managed to reach the end for all characters except Liza.

I had a look at the code of the mod and then I enabled the console to see what was going on. The problem seems to be with the variable Li_clean_stuff.selected that is always False. I see two files (game/scripts/A_home/Outside/Pool/M/a_pool_M_scr.rpy and ame/scripts/A_home/Outside/Pool/D/a_pool_D_scr.rpy) that contain the following lines:
Python:
            if clickable == True and Li_clean_stuff.selected:
                action [Hide("displayTextScreen"),Jump("pool_minigame_start0")]

            if clickable == True and Li_clean_stuff.selected == False:
                action [Hide("displayTextScreen"),Jump("pool_minigame_not_selected")]
                # ...
This jumps to pool_minigame_not_selected (in game/scripts/pool_minigame.rpy), which displays the message "Cleaning stuff has to be selected."

Using the console to force the value Li_clean_stuff.selected to True allows the minigame to start and it is then possible to complete Liza's path.
There's no bug. You need to actually equip the cleaning stuff in the inventory first.
 
  • Like
Reactions: Feyd
Jan 18, 2021
498
1,031
258
There's no bug. You need to actually equip the cleaning stuff in the inventory first.
Doh! Indeed this works. :rolleyes: Thanks! I'm an idiot. ;) This is a bit weird because I do not remember having that problem when I played the original game a while ago. But maybe I forgot. It is unusual in this game to see the cleaning stuff next to the swimming pool, to see it selected/highlighted after clicking on it, but still it has to be selected in the inventory.

Some confusion could be avoided if the error message would say something like: "Cleaning stuff has to be selected in the inventory."

Anyway, thanks again for this great mod!
 
Last edited:
  • Like
Reactions: Powerbabe

Powerbabe

Member
Game Developer
Aug 1, 2018
355
3,303
459
Doh! Indeed this works. :rolleyes: Thanks! I'm an idiot. ;) This is a bit weird because I do not remember having that problem when I played the original game a while ago. But maybe I forgot. It is unusual in this game to see the cleaning stuff next to the swimming pool, to see it selected/highlighted after clicking on it, but still it has to be selected in the inventory.

Some confusion could be avoided if the error message would say something like: "Cleaning stuff has to be selected in the inventory."

Anyway, thanks again for this great mod!
A lot of new changes have been made to the logic of the game after the 0.71b update. I didn't want to make any changes to that, but it was always the case that the items you want to use have to be selected in the inventory first.
 
  • Like
Reactions: Feyd
Jan 18, 2021
498
1,031
258
A lot of new changes have been made to the logic of the game after the 0.71b update. I didn't want to make any changes to that, but it was always the case that the items you want to use have to be selected in the inventory first.
Sure, and that's certainly fine with the items that are in your inventory such as the spy cam, the keys, etc. You see them in your inventory and nowhere else (unless you have to drop them back somewhere and then you see the outline of where they should be dropped). But the unusual thing with the bucket and the mop is that they are visible at the same time at the edge of the swimming pool and in your inventory. This is what confused me.