any serum with a +happiness/turn traitWhat serum does Lily need for her quest?
You cant stop it, you will have to wait until it runs out naturallyDoes anyone know how to stop a Self Replicating Serum ?
Well i won't be able to wait for it to end, is there a way to change the date ?You cant stop it, you will have to wait until it runs out naturally
changing date wont help you since the serum duration will be reduced at end of turn, date is newer checkedWell 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 youWell i won't be able to wait for it to end, is there a way to change the date ?
You should ask Vren (the developer) for a fix, but he wont read it here, so you are better of posting on his patreonApparently 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?
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.You probably have multiple filter policies in effect and that is likely the only age available.
Did you cheat and set sluttiness to some huge number?I keep getting an error and game crashes. It happens when i try to have sex with mom and sis.
You don't have permission to view the spoiler content. Log in or register now.
I did but made a new save and its the same story...Did you cheat and set sluttiness to some huge number?
Yeah, the Mom's sluttiness is 6250000 and sister's is over 1000000... so pretty sure there is cheating involved here.here
withdef 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
This would be in the file game\helper_functions\heart_formatting_functions.rpydef 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
Either should let your cheats continue to work.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