CallMeHuff

Newbie
Feb 17, 2023
58
142
The stuff with Sophia is borderline. I don't want to see this small dick loser husband fing a future LI. Even if she's not enjoying it or reacting. The scenes are hot but this small annoying stuff ruins it. If the scenes with the Husband end here then i can probably get past the previous scenes now that shes "apologizing" to the MC, but if they continue then it's pretty much "you know what." All the other girls are great though.
 
Last edited:

piggy828

Newbie
Game Developer
Dec 14, 2024
40
200
given emily money for hospital bills but olivia is not showing up at cafe
Could you please let me know when you downloaded the file? The issue was fixed and re-uploaded, so it seems like you might have received the version before the fix.
 

pregogamer

New Member
May 17, 2022
3
4
is there any reason why renpy does not allow to load a modified savegame even if you trust its source?
IDK if anyone else mentioned this - Renpy save files are full on .EXE's - this means they are full on programs that can execute on your computer, so loading a save from somewhere else is potentially loading god knows onto your system.
Instead of ever using someone elses save file:
- I would use Unren (theres a thread for it on this site) to enable the in game console
- Load save game into a save file editor like saveeditoronline (but not to modify it there!).
--- View the variables from the save editor, identify one you want to modify: Money, stats, items.. then modify those in game by typing out 'variable = 999/whatever number'.

This is much safer to do ;D
 

Dorago

Member
Nov 13, 2017
120
117
Could you please let me know when you downloaded the file? The issue was fixed and re-uploaded, so it seems like you might have received the version before the fix.
I actualy had the same problem, it was the lastest file downloaded and it was a new playthrough, so here is what I found out, if you go to the café just after giving the money for the hospital bills, it works, but if you do the next part where you buy Emily's house, it dosen't work anymore and you are softlocked from olivia's story, hope it helps
 
  • Like
Reactions: 5mithers

52637

Member
Apr 29, 2021
162
398
IDK if anyone else mentioned this - Renpy save files are full on .EXE's - this means they are full on programs that can execute on your computer, so loading a save from somewhere else is potentially loading god knows onto your system.
Instead of ever using someone elses save file:
- I would use Unren (theres a thread for it on this site) to enable the in game console
- Load save game into a save file editor like saveeditoronline (but not to modify it there!).
--- View the variables from the save editor, identify one you want to modify: Money, stats, items.. then modify those in game by typing out 'variable = 999/whatever number'.

This is much safer to do ;D
No need for all these hoops. Just open the savetoken file in the renpy folder. Find the line that says "if token_dir = true:" and replace token_dir with true. So it reads "if true = true". Now you can modify or import saves.
 

Kaz_Ure

Newbie
Aug 17, 2018
56
10
No need for all these hoops. Just open the savetoken file in the renpy folder. Find the line that says "if token_dir = true:" and replace token_dir with true. So it reads "if true = true". Now you can modify or import saves.
The token file inside the game? Can you give more detailed info im kinda lost. Sorry and thanks in advance
 

Domuz

New Member
Oct 26, 2024
2
0
Para mí gusto es un buen trabajo lo que si me gustaría en lo personal que para una actualización los organismos femeninos no se entreguen de manera tan fácil ya que el fin de el trabajo es la dominación masculina y la venganza.
Un saludo y gracias mucho éxito
 

piggy828

Newbie
Game Developer
Dec 14, 2024
40
200
I want to express my gratitude to everyone who has played my game.
Currently, I’m facing a dilemma and would like to hear your opinions.
The quality of the early parts of the game feels significantly lower compared to the current content, and I’m considering whether I should remake those scenes.
However, doing so might slow down the progress of the story significantly. On the other hand, if I leave the early parts as they are, I worry that new players might lose interest and quit the game before getting hooked.
What do you think would be the better choice?
 

52637

Member
Apr 29, 2021
162
398
The token file inside the game? Can you give more detailed info im kinda lost. Sorry and thanks in advance
In the install folder, there's one called "renpy"
savetoken location.jpg
Open this savetoken file in notepad

Find this line:
what to change.jpg
Replace "if token_dir is None:" with "if True:"

Hit save (not Save As). You're done. Do this with any other games that complain about modified saves.
 

52637

Member
Apr 29, 2021
162
398
I want to express my gratitude to everyone who has played my game.
Currently, I’m facing a dilemma and would like to hear your opinions.
The quality of the early parts of the game feels significantly lower compared to the current content, and I’m considering whether I should remake those scenes.
However, doing so might slow down the progress of the story significantly. On the other hand, if I leave the early parts as they are, I worry that new players might lose interest and quit the game before getting hooked.
What do you think would be the better choice?
I would say maybe leave remaking old scenes until you've reached a good stopping point/milestone in the story. People don't like loose ends, so pausing the story at any time will be received poorly, but finding a place where the story would naturally lull a bit would be better.
 

5mithers

Member
Aug 3, 2019
232
229
Could you please let me know when you downloaded the file? The issue was fixed and re-uploaded, so it seems like you might have received the version before the fix.
piggy828 The answer to the Emily/Olivia bug is in this line of code:

cafe.rpy, line 17:
Code:
elif current_time == 'Afternoon' and Love_progress['Olivia_lp'] == 3 and Love_progress['Emily_lp'] == 4:
Currently I had pursued Emily more than Olivia, and Emily's LP is 6, while Olivia's is 3. Therefore Olivia's next stage will never trigger.
1737584883417.png

This needs to be a greater than or equal to trigger. More like this:
(You can use line 57 in the same cafe.rpy file for an example in your own code.)

Code:
# Corrected line 17:
elif current_time == 'Afternoon' and Love_progress['Olivia_lp'] == 3 and Love_progress['Emily_lp'] >= 4:


*Edit: Seeing the next stages of the Olivia thing, it makes sense why you would want to hard lock it, there are aspects of Emily's route that made no sense to me (when did she lose her job?!?), and a new character in Jessica's route (Clara) that was never introduced before, but the MC acted like he knew her. My guess is you want those scenes to play after this one. So while my >= suggestion would work for the Emily/Olivia softlock, if you really want to lock the order people see content in you would need to put additional and statements in the other paths for the other girls to lock being able to progress them until you have seen this particular scene.

*Edit 2: Another out-of-order scene issue is if you follow Olivia's path before Samantha's path, Luna is against you for no clear reason. Following Samantha's path instead explains the reason and probably should be forced first if that's the order of exposition. Upside: This one doesn't soft lock if you go out of order, it's just slightly confusing.
 
Last edited:

piggy828

Newbie
Game Developer
Dec 14, 2024
40
200
piggy828 The answer to the Emily/Olivia bug is in this line of code:

cafe.rpy, line 17:
Code:
elif current_time == 'Afternoon' and Love_progress['Olivia_lp'] == 3 and Love_progress['Emily_lp'] == 4:
Currently I had pursued Emily more than Olivia, and Emily's LP is 6, while Olivia's is 3. Therefore Olivia's next stage will never trigger.
View attachment 4471530

This needs to be a greater than or equal to trigger. More like this:
(You can use line 57 in the same cafe.rpy file for an example in your own code.)

Code:
# Corrected line 17:
elif current_time == 'Afternoon' and Love_progress['Olivia_lp'] == 3 and Love_progress['Emily_lp'] >= 4:


*Edit: Seeing the next stages of the Olivia thing, it makes sense why you would want to hard lock it, there are aspects of Emily's route that made no sense to me (when did she lose her job?!?), and a new character in Jessica's route (Clara) that was never introduced before, but the MC acted like he knew her. My guess is you want those scenes to play after this one. So while my >= suggestion would work for the Emily/Olivia softlock, if you really want to lock the order people see content in you would need to put additional and statements in the other paths for the other girls to lock being able to progress them until you have seen this particular scene.

*Edit 2: Another out-of-order scene issue is if you follow Olivia's path before Samantha's path, Luna is against you for no clear reason. Following Samantha's path instead explains the reason and probably should be forced first if that's the order of exposition. Upside: This one doesn't soft lock if you go out of order, it's just slightly confusing.
Oh... It seems like the first issue wasn’t resolved even though I uploaded the file with the changes you mentioned. Something might have gone wrong—my apologies for that.
As for the second issue, it seems like it will need to be addressed in a future update. Thank you for pointing it out!
I’ll make sure the next update is more fun and free of errors.
 
  • Like
Reactions: 5mithers

GameRebel

Member
Mar 29, 2020
465
139
When you go to the company and click the "Invest" button, a mini-game will appear. You can earn money through that, and each stock has a set lower limit, so with a little effort, you should be able to accumulate money easily. However, if you still find it difficult, please let me know!
Some of the hints use "office" and "company" as location, but I only see office on the map. Are these the same location or is company a different location?
 

piggy828

Newbie
Game Developer
Dec 14, 2024
40
200
Some of the hints use "office" and "company" as location, but I only see office on the map. Are these the same location or is company a different location?
Both mean the same thing!
It seems there was probably a mistake during the translation process.
I’m sorry for the confusion.
 
  • Like
Reactions: GameRebel
3.70 star(s) 3 Votes