korte7

Redhead Aficionado
Donor
Jul 20, 2020
61
89
109
BolHeX I think the shoot cost issue is with shoot.cost or with estimated cost, and it is not solved in the hotfix. I changed line 425 in screen_shoot_studio_menu.rpy from:
Python:
total_cost = int(shoot.cost * perm_shoot_cost_multiplier + estimated_cost * perm_shoot_cost_multiplier)
to
Python:
total_cost = int(int(shoot.cost) * perm_shoot_cost_multiplier + int(estimated_cost) * perm_shoot_cost_multiplier)
and that fixed it. And I don't know what you changed in the hotfix, but for me these files in shoot_studio did not recompile, and the error occured even after deleting the rpyc files and forcing the recompile. The only thing I could find regarding setting a base "cost" would be the shoot_payment that is set with shoot_payment = max(min(shoot_payment, 500), 100), but once again that is not the issue I think.
 

BolHeX

Active Member
Nov 30, 2019
682
1,371
328
BolHeX I think the shoot cost issue is with shoot.cost or with estimated cost, and it is not solved in the hotfix. I changed line 425 in screen_shoot_studio_menu.rpy from:
Python:
total_cost = int(shoot.cost * perm_shoot_cost_multiplier + estimated_cost * perm_shoot_cost_multiplier)
to
Python:
total_cost = int(int(shoot.cost) * perm_shoot_cost_multiplier + int(estimated_cost) * perm_shoot_cost_multiplier)
and that fixed it. And I don't know what you changed in the hotfix, but for me these files in shoot_studio did not recompile, and the error occured even after deleting the rpyc files and forcing the recompile. The only thing I could find regarding setting a base "cost" would be the shoot_payment that is set with shoot_payment = max(min(shoot_payment, 500), 100), but once again that is not the issue I think.
So this is definitely an issue with a mod, maybe the cost isn't missing but rather the cost is a string. That would explain why your change fixes it. You can try printing the shoot and its cost if its not an int by adding a line above that check.
Code:
base_cost = shoot.cost
if not isinstance(shoot.cost, int):
    print(shoot, type(shoot.cost), shoot.directory_path)

total_cost = int(int(shoot.cost) * perm_shoot_cost_multiplier + int(estimated_cost) * perm_shoot_cost_multiplier)
As for the recompiling thing, I am not sure why but it seems like some peoples installs have had issues. Someone else had an empty .rpy file after hotfixing. I am not sure why because I didn't change anything install or mod manager related in the last hotfix.
 

korte7

Redhead Aficionado
Donor
Jul 20, 2020
61
89
109
You can try printing the shoot and its cost if its not an int by adding a line above that check.
Yep, the cost was indeed a string in the Miriama Kunkelova videoshoot Office reuinion or office_groupsex.
 
  • Like
Reactions: BolHeX

GamerDaddy

Engaged Member
Feb 6, 2023
2,762
1,698
296
Did restarting the game fix them not being detected? I can't see anything in the code that would automatically delete files, only when you choose to uninstall a mod or have auto delete enabled(deletes archives not mod files themselves).
it works fine on my end
 
Mar 13, 2023
110
22
93
Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "renpy/common/00start.rpy", line 241, in script call
    call _splashscreen from _call_splashscreen_1
  File "game/script.rpy", line 90, in script
    $ _check_mod_files(download_icons=False)
  File "game/script.rpy", line 90, in <module>
    $ _check_mod_files(download_icons=False)
ConnectionError: HTTPSConnectionPool(host='www.corrupted-mods.academy', port=443): Max retries exceeded with url: /mods/api/mods (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7fc88de981f0>: Failed to resolve 'www.corrupted-mods.academy' ([Errno -2] Name or service not known)"))
I just enabled the modding stuff through the game, and now it's just broken.

EDIT: went through this time, but probably should have it so that it can be played through spotty internet connections.
 
  • Like
Reactions: BolHeX

ttt57

New Member
Jun 29, 2019
3
0
186
I think its a bug caused by the church mod back before it was fixed. If you load your save go to your house, open the console with Shift+O and paste renpy.set_return_stack(renpy.get_return_stack()[-1::]) it might fix the bug.
It doesn't fix it unfortunately. The first part stays the same and if I ignore that the game goes back to the main menu and says that it's unable to find the ,already installed, latest hotfix.
 

TofuPixel

Newbie
Aug 20, 2016
19
43
110
WarblGarbl Bug with the church activities:

The computer lab is populated by a repeating list of sermon upgrades. Currently it has hundreds of items in my game and it slows down the game and will probably cause a crash in the future.

Screenshot 2025-10-02 183022.png

I don't know the exact steps to reproduce because I already have a huge list of sermon upgrades in the computer lab and I cannot identify what is causing additional items to be entered into the list.

PS: Why are these upgrades at the computer lab in the first place? :D
 
  • Like
Reactions: Velten79

teukuyome

New Member
Apr 2, 2022
1
0
125
Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label show_davemanster_generic_video_pop_up is defined twice, at File "game/_mods/clothing/davemanster_clothing/davemanster_popup.rpy", line 3:
label show_davemanster_generic_video_pop_up:

and File "game/_mods/davemanster_mods/davemanster_clothing/davemanster_popup.rpy", line 3:
label show_davemanster_generic_video_pop_up:



The label davemanster_generic_video_pop_up_enable is defined twice, at File "game/_mods/clothing/davemanster_clothing/davemanster_popup.rpy", line 13:
label davemanster_generic_video_pop_up_enable:

and File "game/_mods/davemanster_mods/davemanster_clothing/davemanster_popup.rpy", line 13:
label davemanster_generic_video_pop_up_enable:



Ren'Py Version: Ren'Py 8.3.4.24120703
Thu Oct  2 14:08:53 2025


any idea to fix this?
 

WarblGarbl

Active Member
Oct 10, 2017
537
639
258
WarblGarbl Bug with the church activities:

The computer lab is populated by a repeating list of sermon upgrades. Currently it has hundreds of items in my game and it slows down the game and will probably cause a crash in the future.

View attachment 5304495

I don't know the exact steps to reproduce because I already have a huge list of sermon upgrades in the computer lab and I cannot identify what is causing additional items to be entered into the list.

PS: Why are these upgrades at the computer lab in the first place? :D
Is your mod up to date? I thought I fixed this bug but I guess not. Do you recall any error text during the sermon?

They're in the computer lab because this was the only way at the time I thought I could add stat changing modifiers to every girl in the game, like how the gloryhole works. The sermon turns them on and off depending on what you choose. You're not supposed to see them, and there shouldn't be more than one of each type. Again thought I got this but I'll look again.
 

TofuPixel

Newbie
Aug 20, 2016
19
43
110
Is your mod up to date? I thought I fixed this bug but I guess not. Do you recall any error text during the sermon?

They're in the computer lab because this was the only way at the time I thought I could add stat changing modifiers to every girl in the game, like how the gloryhole works. The sermon turns them on and off depending on what you choose. You're not supposed to see them, and there shouldn't be more than one of each type. Again thought I got this but I'll look again.
All mods and base game are up to date as of now and I haven't had any errors running the game so far.
 
  • Like
Reactions: WarblGarbl

BolHeX

Active Member
Nov 30, 2019
682
1,371
328
can someone tell me why i am getting this error

View attachment 5304624
Either redownload the updated version from the main post or go into the mods tab and download/install the generic videos mod. Some required files weren't included initially but it has been fixed.

If you do have it installed you might just need to restart the game. Not sure why it wouldn't be detected.

It doesn't fix it unfortunately. The first part stays the same and if I ignore that the game goes back to the main menu and says that it's unable to find the ,already installed, latest hotfix.
In that case I am not sure, I think the issues the mod had during initial release is the cause of the errors. If you can't rollback to before the errors and use the console command to prevent them in the future I think the save is dead.

Code:
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.


The label show_davemanster_generic_video_pop_up is defined twice, at File "game/_mods/clothing/davemanster_clothing/davemanster_popup.rpy", line 3:
label show_davemanster_generic_video_pop_up:

and File "game/_mods/davemanster_mods/davemanster_clothing/davemanster_popup.rpy", line 3:
label show_davemanster_generic_video_pop_up:



The label davemanster_generic_video_pop_up_enable is defined twice, at File "game/_mods/clothing/davemanster_clothing/davemanster_popup.rpy", line 13:
label davemanster_generic_video_pop_up_enable:

and File "game/_mods/davemanster_mods/davemanster_clothing/davemanster_popup.rpy", line 13:
label davemanster_generic_video_pop_up_enable:



Ren'Py Version: Ren'Py 8.3.4.24120703
Thu Oct  2 14:08:53 2025


any idea to fix this?
Delete the "game/_mods/davemanster_mods" folder, you have it installed manually and via the mod manager.
 
  • Like
Reactions: teukuyome

x7xas4UprEta

Member
Apr 21, 2018
136
73
163
Not a big deal, but I noticed that all the tooltips for the attributes on the Student Overview screen are incorrect. An Example :
You don't have permission to view the spoiler content. Log in or register now.

Discipline is 47 but the tooltip shows 200/2400
 

TofuPixel

Newbie
Aug 20, 2016
19
43
110
Not a big deal, but I noticed that all the tooltips for the attributes on the Student Overview screen are incorrect. An Example :
You don't have permission to view the spoiler content. Log in or register now.

Discipline is 47 but the tooltip shows 200/2400
The tool-tip seems correct, it shows current XP progress to get to the next level. 47 is your level in discipline and 200/2400 is your discipline XP progression to level 48.
 
  • Like
Reactions: x7xas4UprEta

fast17

Newbie
Nov 15, 2019
36
3
109
I have another topic - when want to play events at home, only room picture is visible when video has to start, but nothing else happened. I can roll back to jum off. Any ideas?
 

AMD77121!

New Member
Jul 17, 2021
14
3
126
I seem to remember there beings mods of various girls that are no longer available on either spreadsheet or mod manager (Natasha Nice, Mandy Muse, Gia Derza, I'm sure a couple more). Was that this game or WTM? If this game where did they go? Thanks to creator and modders for hard work.
 
4.30 star(s) 51 Votes