The tier is open so continue assigning research...question, what happens after you give stephanie the three test subjects?
Nothing seems to be happening.
and where do you find the phone for the sister?
Just keep finishing researches until something happens? coolThe tier is open so continue assigning research...
Did you use it in conjunction with fertility 99 command until recently it worked like a champ.i can never get this command to work for chicks on the pill this isnt right eh
the_person.bc_chance =0
After the test subjects you get a few additional items to research including extreme pregnancy and boobificationquestion, what happens after you give stephanie the three test subjects?
Nothing seems to be happening.
and where do you find the phone for the sister?
Try a comma after Falseafter editing the console to true this error keeps popping up in my game
You don't have permission to view the spoiler content. Log in or register now.
does anyone know how to fix it?
i set mine for 100 but anytime i meet new chicks i always drop all 3 codes at same timeDid you use it in conjunction with fertility 99 command until recently it worked like a champ.
after editing the console to true this error keeps popping up in my game
You don't have permission to view the spoiler content. Log in or register now.
does anyone know how to fix it?
I think you are thinking of the Nora Serums.PS: I could've sworn there was special traits where you have to observer certain people to get.
How exactly do you get them again?
nvm just got them.
The code below is what looks at it.Lily (sister) asked for "fun drugs" for her friends. The special action just says this:
View attachment 1497860
I have 20 doses of a serum that I specifically engineered for this thinking that maybe it had to have net positive happiness traits? But nothing seems to unlock that action.
Is this a bug?
label sister_vaginal_taboo_break_revisit_quest_1(the_person):
mc.name "I've got some serum for you and your friends."
call screen serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10)
$ the_serum = _return
if _return == None:
mc.name "Actually, I forgot to grab them from the office. I'll be back another time."
"[the_person.possessive_title] pouts, but nods her understanding."
return
Work has been hell so I haven't had a chance to test this build. I'm just glad so many others have stepped up to help. One such posted what they claimed was a fix to the code that counts held serums upthreadThe code below is what looks at it.
They need to be identical. They don't need to be anything special.
The mood enhancer and primitive serum should be enough to meet the requirements.
Just all 10 need to be made the same. How similar is the question.
It does mention batch size below of 10. If that is the case you would need to purchase all 3 batch sizes before this can be completed. There could be a reason for that. That may be to insure they are identical.
Python:label sister_vaginal_taboo_break_revisit_quest_1(the_person): mc.name "I've got some serum for you and your friends." call screen serum_inventory_select_ui(mc.inventory, the_person, batch_size = 10) $ the_serum = _return if _return == None: mc.name "Actually, I forgot to grab them from the office. I'll be back another time." "[the_person.possessive_title] pouts, but nods her understanding." return
This isn't some sort of fix it's what is in the current 46.1 version. I just used notepad++ to search the files for the text.Work has been hell so I haven't had a chance to test this build. I'm just glad so many others have stepped up to help. One such posted what they claimed was a fix to the code that counts held serums upthread
Thanks, I got that. What I'm saying is that the problem may lie elsewhere. I haven't had time to test it but I found the potential fix, quoted belowThis isn't some sort of fix it's what is in the current 46.1 version. I just used notepad++ to search the files for the text.
I think there is still a bug in the file "..\game\major_game_classes\serum_related\SerumInventory.rpy"
For me, these changes worked:
Attached is the modified file.Python:def get_max_serum_count(self): #Returns the count of the highest group of serums you have available. highest_count = 0 for design in self.serums_held: if self.get_serum_count(design[0]) > highest_count: highest_count = self.get_serum_count(design[0]) return highest_count