swiver

Active Member
Sep 13, 2020
640
589
I'm having trouble changing the outfits, can someone help me?

I created a outfit for sleep, but the girls arent using it. I even tried disabling the default pajama, but even then it doesnt work. Am I missing something?
show us once you gdt it working!
 
Dec 16, 2022
287
761
Am I the only one who thinks the exp and the level up takes TOO MUCH time? I mostly stay grinding levels in danger room or in classroom than fucking, just... What the hell???
It's balanced around the entire planned length of the game which is at least 4-5 in game years. Considering that the top achievement is lvl 30 that means you're expected to gain 6-8 lvls a year.

Still, as the game is now it's pretty grindy. Maybe they'll add xp gains after major story missions or just more or better ways to gain xp.
 
Last edited:
  • Like
Reactions: Bazuca

sleepingkirby

Well-Known Member
Aug 8, 2017
1,008
1,543
ShinyBoots1993 , ronchonbon
A bug report. sadnoodleboy picked it up.
In the file game/scripts/mechanics/approval.rpy, in change_Character_stat(), there are these line of codes:
Code:
        if Character in getattr(store, f"ch{chapter}_Companions"):
            update = max_stats[season - 1] - stat if stat + update >= max_stats[season - 1] else update
        else:
            update = 1000 - stat if stat + update >= 1000 else update
That if condition is trying to match a Character object to an object indexed by the character name. So the result is it'll never match correctly.

In other words this returns as true:
Code:
'Jean' in getattr(store, f"ch{chapter}_Companions")
But the game is trying to do:
Code:
<store.CompanionClass object> in getattr(store, f"ch{chapter}_Companions")
I think it should be:
Code:
       if Character.tag in getattr(store, f"ch{chapter}_Companions"):
 

Dittymyman

Member
Feb 23, 2019
133
711
Have y'all tried turning off Multithreading in the Graphics Options?
I have a modern cpu, there is something inherently wrong with the multi-threading. I do not know if you are using a built in feature of renpy or it is self implemented; but bad multi-threading will always be worse than a backed up single thread. I know you have done a lot in renpy but you are reaching the limit of performance on this visual novel engine; maybe consider switching to an actual game engine.
 

Karnon254332

Member
Feb 20, 2019
103
111
A recent malware detection has left me pretty spooked, so I feel the need to ask. Has anyone found any malware or suspicious stuff after playing the recent update?
 

cannavaro99

Member
Mar 29, 2020
147
336
I'm having trouble changing the outfits, can someone help me?

I created a outfit for sleep, but the girls arent using it. I even tried disabling the default pajama, but even then it doesnt work. Am I missing something?
Did you click on any season for the outfits? Like winter Sommer etc? I found out in this update when nothing is selected the outfit does not show up
 
4.70 star(s) 141 Votes