Thaunatas

Member
Aug 25, 2021
235
124
Well i won't be able to wait for it to end, is there a way to change the date ?
The only thing you could try is to edit the savefile and try to find where the serum effect on the person/s is stored and remove it by hand, but how or where to look, I cant tell you
 

gregers

Forum Fanatic
Dec 9, 2018
4,458
5,640
Since the self-replicating trait has been introduced a "clear all temporary serum effects" trait would be a useful addition though.
 
  • Like
Reactions: guyf_

MahBah

Newbie
Jul 13, 2017
37
49
Apparently the system doesn't recognize each turn's milked serum as the same from before. I have now hundreds and thousands of different stacks of breast milks from each of my milked employers, and I can't get to sell it without clicking manually for half an hour.

Does anyone have a fix for it?
 

Thaunatas

Member
Aug 25, 2021
235
124
Apparently the system doesn't recognize each turn's milked serum as the same from before. I have now hundreds and thousands of different stacks of breast milks from each of my milked employers, and I can't get to sell it without clicking manually for half an hour.

Does anyone have a fix for it?
You should ask Vren (the developer) for a fix, but he wont read it here, so you are better of posting on his patreon
 

Brololol

Member
Oct 19, 2017
356
349
You probably have multiple filter policies in effect and that is likely the only age available.
I specifically disabled them I got the in the first place to get more specific age/height personell for job. Ended up having them all age 20.
 
Oct 14, 2020
112
126
If you have a save that causes the same crash, feel free to post it. If it has cheated values, you will be mocked however. :)

Or be safe and set the values to 100. Nothing above that has any effects.
 

slowpersun

Active Member
May 30, 2017
643
437
Yeah, offering your cousin a job also crashes game, can lead to infinite loop of offering cousin job, but she doesn't get it while taking up job slots. She takes up 3 work slots in my game currently, since occasionally forget not to give her job...
 
Oct 14, 2020
112
126
Yeah, the Mom's sluttiness is 6250000 and sister's is over 1000000... so pretty sure there is cheating involved here.

If you want this to work still, you can replace this:

def get_red_heart(sluttiness): #A recursive function, feed it a sluttiness and it will return a string of all red heart images for it. Hearts that are entirely empty are left out.
#TODO: Expand this to let you ask for a minimum number of empty hearts.
the_final_string = ""
if sluttiness >= 20:
the_final_string += "{image=gui/heart/red_heart.png}"
the_final_string += get_red_heart(sluttiness - 20) #Call it recursively if we might have another heart after this.
elif sluttiness >= 15:
the_final_string += "{image=gui/heart/three_quarter_red_quarter_empty_heart.png}"
elif sluttiness >= 10:
the_final_string += "{image=gui/heart/half_red_half_empty_heart.png}"
elif sluttiness >= 5:
the_final_string += "{image=gui/heart/quarter_red_three_quarter_empty_heart.png}"

return the_final_string
with

def get_red_heart(sluttiness, depth=0): #A recursive function, feed it a sluttiness and it will return a string of all red heart images for it. Hearts that are entirely empty are left out.
#TODO: Expand this to let you ask for a minimum number of empty hearts.
the_final_string = ""
if sluttiness >= 20:
the_final_string += "{image=gui/heart/red_heart.png}"
if depth >= 4:
return the_final_string
the_final_string += get_red_heart(sluttiness - 20, depth+1) #Call it recursively if we might have another heart after this.
elif sluttiness >= 15:
the_final_string += "{image=gui/heart/three_quarter_red_quarter_empty_heart.png}"
elif sluttiness >= 10:
the_final_string += "{image=gui/heart/half_red_half_empty_heart.png}"
elif sluttiness >= 5:
the_final_string += "{image=gui/heart/quarter_red_three_quarter_empty_heart.png}"

return the_final_string
This would be in the file game\helper_functions\heart_formatting_functions.rpy

If Vren is reading this (or you want a more safe/modified version), I would recommend:
def get_red_heart(sluttiness): # Feed it a sluttiness and it will return a string of all red heart images for it. Hearts that are entirely empty are left out.
#TODO: Expand this to let you ask for a minimum number of empty hearts.
full_count = min(int(sluttiness / 20), 5)
ret = "{image=gui/heart/red_heart.png}" * full_count
if full_count >= 5:
return ret
remain = sluttiness % 20
if remain >= 15:
ret += "{image=gui/heart/three_quarter_red_quarter_empty_heart.png}"
elif remain >= 10:
ret += "{image=gui/heart/half_red_half_empty_heart.png}"
elif remain >= 5:
ret += "{image=gui/heart/quarter_red_three_quarter_empty_heart.png}"
return ret
Either should let your cheats continue to work.
 
3.40 star(s) 127 Votes