Mod Ren'Py Straitened Times [HRelease] Alternative Gallery Mod

CbunnySwtor

Member
Jul 18, 2024
279
661
171
I confess, I had to do a double take on that post, checking who actually posted it ;)
You "can" run it if you already have it. Obviously nothing new will have been added. The problem is HRelase changed the IsMoreThanMin function. You can edit it yourself if you'd like.
Change:
.IsMoreThanMin()
to
.IsMoreThanMin(Notify = False)
in every file it appears in.
As for a deadline... Don't have one as of yet. Haven't even looked to see which labels are new tbh.
 

Gen Urobuchi

Newbie
Nov 19, 2020
84
139
52
You "can" run it if you already have it. Obviously nothing new will have been added. The problem is HRelase changed the IsMoreThanMin function. You can edit it yourself if you'd like.
Change:
.IsMoreThanMin()
to
.IsMoreThanMin(Notify = False)
in every file it appears in.
As for a deadline... Don't have one as of yet. Haven't even looked to see which labels are new tbh.
That actually worked.
I just used to speed things up - and don't seem to have any issues thus far.
Using the last version of the gallery mod and the CbunnyCheat.62.0

Thanks (y)
 
  • Like
Reactions: Trminator

Do1

Newbie
Jun 24, 2017
42
21
172
It seems that the mod changes the save files. After which trying to load them from the original game without the mod always leads to an error and a crash. Or it offers to start the game from the beginning if you click Ignore. Is there any way to fix the save files?
 

CbunnySwtor

Member
Jul 18, 2024
279
661
171
It seems that the mod changes the save files. After which trying to load them from the original game without the mod always leads to an error and a crash. Or it offers to start the game from the beginning if you click Ignore. Is there any way to fix the save files?
Most mods create their own set of variables to use that are separate from those in the game. Ren'Py saves those variables into the save file in the store object. If you decide to remove the mod, you'll need to create your own set of those variables to prevent the errors that are created when the game can't find the variables it's looking for. It's easy enough to do:

Create a text file in the game folder named whatever you want .rpy
enter the following:
Code:
init python:
    variable_name_that_is_causing_the_error = None
Save it, and run the game. The important thing is that python works on indentation, so whatever you decide to use, be it 1 space or 30 spaces, you have to use it for every line after "init python:"

For instance, in this mod, you're see an error for rOutfit and replayTmp when you remove the folder. The fix:

Code:
init python:
    rOutfit= None
    replayTmp = None
 
Last edited:

Do1

Newbie
Jun 24, 2017
42
21
172
Most mods create their own set of variables to use that are separate from those in the game. Ren'Py saves those variables into the save file in the store object. If you decide to remove the mod, you'll need to create your own set of those variables to prevent the errors that are created when the game can't find the variables it's looking for. It's easy enough to do:

Create a text file in the game folder named whatever you want .rpy
enter the following:
Code:
init python:
    variable_name_that_is_causing_the_error = None
Save it, and run the game. The important thing is that python works on indentation, so whatever you decide to use, be it 1 space or 30 spaces, you have to use it for every line after "init python:"

For instance, in this mod, you're see an error for rOutfit and replayTmp when you remove the folder. The fix:

Code:
init python:
    rOutfit= None
    replayTmp = None
Thanks! But if I do the above actions, another error appears:
File "game/scrs_game_menus.rpy", line 776, in __call__
UnpicklingError: NEWOBJ class argument isn't a type object
The previous solution does not work, it's not about an undefined variable.
 

CbunnySwtor

Member
Jul 18, 2024
279
661
171
Thanks! But if I do the above actions, another error appears:
File "game/scrs_game_menus.rpy", line 776, in __call__
UnpicklingError: NEWOBJ class argument isn't a type object
The previous solution does not work, it's not about an undefined variable.
Ok. it's trying to call the __new__ magic method. Here:
Code:
init python:
   class rOutfit(object):
        outfit = 1
 

Mortarion

Engaged Member
Donor
Oct 22, 2017
2,045
7,344
769


Overview:
The Gallery is... lacking in my opinion. As is, it's just disjointed images and videos with none of the context of the game.
This is to rectify that issue. With the exception of the photo shoot images, nothing "should" get altered by using this mod.​

Updated: 19 JUL 2025
Game: Straitened Times
Creator: HRelease
Modder: CbunnySwtor
Mod Version: 0.9
Game Version: 0.63.1-ish
Language: EN

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.

Fixed Jill errors. Haven't added anything new.


Any chance for a update to 0.64.1?
Or have you dropped this mod?