pythia23

Member
Aug 2, 2017
106
43
Those are the traits that you get completing Nora's quests:
You don't have permission to view the spoiler content. Log in or register now.
Creata a serum with Motherly Devotion, Sisterly Obedience, Auntly Potential, Meritocratic Attraction, Pleasurable Obedience and some standard/advanced traits that increase some stats, duration and number of slots, set it as daily dose, and you are all done.

Cousinly Hate, Distilled Disgust, Rapid Corruption and Natural Talent have their uses, too, but not as a daily dosis.
quick question: are these still the only serums nora can make in the latest build of the game, and does she say anything new/different once you've unlocked them all?
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,400
5,620
quick question: are these still the only serums nora can make in the latest build of the game, and does she say anything new/different once you've unlocked them all?
I've read somewhere that there are a few new serums, but nothing game changing AFAIK.
 

hameleona

Member
Oct 27, 2018
287
579
quick question: are these still the only serums nora can make in the latest build of the game, and does she say anything new/different once you've unlocked them all?
There are two new ones:
Meritocratic Attraction - "A special serum trait developed by Nora after studying herself. Increases the recipients Obedience and Sluttiness for the duration by 5 for every point of Intelligence you have."
Human Breeding Hormones - "A special serum trait developed by Nora after studying someone who was in the later stages of pregnancy. Massively decreases birth control effectiveness, increases fertility, and triggers breast swelling and lactation."

I can't seem to find the requirements to unlock them, tho.
 

srksrk 68

Forum Fanatic
Modder
Sep 17, 2018
4,400
5,620
There are two new ones:
Meritocratic Attraction - "A special serum trait developed by Nora after studying herself. Increases the recipients Obedience and Sluttiness for the duration by 5 for every point of Intelligence you have."
Human Breeding Hormones - "A special serum trait developed by Nora after studying someone who was in the later stages of pregnancy. Massively decreases birth control effectiveness, increases fertility, and triggers breast swelling and lactation."

I can't seem to find the requirements to unlock them, tho.
Meritocratic Attraction has been in game for quite some time now.
 

OsoSober

Member
Jul 22, 2018
164
65
For Nora's study Serums

Motherly Devotion
Mom with sluttiness > 75 and love > 75:

A special serum trait developed by Nora after studying your mother. Permanently increases the recipient's Love by 1 per turn for every 10 points that their Sluttiness is higher than Love.

Sisterly Obedience
Sister with core_sluttiness > 75 and obedience > 150:

A special serum trait developed by Nora after studying your sister. Permanently increases the recipient's Sluttiness by 1 per day for every 10 points that their Obedience is above 100.

Cousinly Hate
Cousin with core_sluttiness > 75 and love < -25:

A special serum trait developed by Nora after studying your cousin. Permanently increases the recipient's Sluttiness by 1 per day for every 5 Love that they are below 0.

Auntly Potential
Aunt with core_sluttiness > 75:

A special serum trait developed by Nora after studying your aunt. Increases the number of traits a serum design may contain by 2.

Meritocratic Attraction
Nora with core_sluttiness > 75:

A special serum trait developed by Nora after studying herself. Increases the recipients Obedience and Sluttiness for the duration by 5 for every point of Intelligence you have.

Lovers Attraction
Anyone with love > 85:

A special serum trait developed by Nora after studying someone who adores you. Each turn permanently converts one point of Sluttiness into Love until they are equal.

Distilled Disgust
Anyone with love < -50:

A special serum trait developed by Nora after studying someone who absolutely hates you. Gives a massive penalty to love for the duration of the serum.

Pleasurable Obedience
Anyone with obedience > 180:

A special serum trait developed by Nora after studying someone who was completely subservient to you. Increases happiness by 1 for every 5 points of Obedience over 100 per turn.

Rapid Corruption
Anyone with core_sluttiness > 100:

A special serum trait developed by Nora after studying someone who was a complete slut. Instantly and permanently converts up to 5 Temporary Sluttiness into Core Sluttiness when applied.

Natural Talent
Anyone with int >= 7 and charisma >= 7:

A special serum trait developed by Nora after studying someone who was a genius. Instantly and permanetly sets the recipients Intelligence, Charisma, and Focus to 5.

There is another one, but i dont use it,
It is human breeding hormones
unlocks with research on someone late into pregnancy
Immediately increases breast size by 1
also, give a major increase in fertility while active, 70% i think (could be higher)
also gives a major decrease to birth control
 

zippydan

Member
Dec 17, 2016
117
104
Because the relationship with the generic NPC in which the event is happening for is only really interesting if she's cheating on her husband.
If you go to game/game_roles/role_affairs, there is this function called:
def leave_SO_love_calculation(the_person)

You can modify that to have whatever love requirement you want the person to have in order to initiate leaving
 

zippydan

Member
Dec 17, 2016
117
104
does anyone know how to fix the pregnancy > birth > non return to work bug?
the_person.event_triggers_dict["preg_start_date"] = day -90 + renpy.random.randint(0,10)
the_person.event_triggers_dict["preg_tits_date"] = day - 30 - renpy.random.randint(0,5)
the_person.event_triggers_dict["preg_transform_day"] = day - 14 - renpy.random.randint(0,10)
the_person.event_triggers_dict["preg_finish_announce_day"] = day

Either do pregnant_finish(the_person) or
the_person.body_type = person.event_triggers_dict.pop("pre_preg_body")
the_person.schedule = person.event_triggers_dict.pop("preg_old_schedule") # restore old schedule and clear from dict
the_person.event_triggers_dict["preg_knows"] = False #Otherwise she immediately knows the next time she's pregnant.
the_person.kids += 1 #TODO: add a new role related to a girl being a mother of your kid?
the_person.remove_role(pregnant_role)
 

Ruler89627

New Member
Mar 29, 2018
10
7
Does anyone know the latest changelog for february? Thanks
*CHANGES AND ADDITIONS*

- Added Jennifer's office as a location.

- Added Jennifer's office lobby as a location.

- Added large sections of content to Jennifer's storyline.

- Story content includes ability to convince Jennifer to get a boob job.

- Added new randomly generated character related to Jennifer's boss.

- Added start of storyline related to Jennifer's boss.

- Added ability to visit Jennifer at work.

- Editted Jennifer's schedule so she is at work during the day.

- Added ability to visit Jennifer's office lobby and ask for her to come down and visit you.

- Improved internal logic for how outfits should be worn.

- Added is_wearing_uniform() function for People. Many events that checked if outfits did or did not match uniforms now properly implemented.

- Added basis for the new phone system.

- Added ability to text girls and ask where they are right now.

- Updated all dialogue calls to use Person "dialogue" instead of Person.char "dialogue to integrate with text system.

- "Wait" or "Sleep" options now always take priority in the action list.

- "Go somewhere else" option now takes second priority in the action list.

- Updated all events that made reference of texting to use the texting system.



*BUG FIXES*

- Fixed taboo dialogue crash when paying a girl strip for you.

- Fixed strip dialogue cascading properly when a taboo break was triggered.

- Fixed crash in catfight event cause by improper group redraw call.

- Fixed crash caused when you're caught in an affair.

- Fixed a crash when you go home with a slutty date.

- Fixed girls not properly returning to their uniforms after they had been commanded to strip.

- Fixed many events improperly checking if an outfit being worn was the characters uniform.

- Corrected logic error in "review_outfit" code.

- Fixed crash in the "horny at work" random event.
 

dalzomo

Active Member
Aug 7, 2016
884
715
I have v36.1 and just started over again and out of memory error
Popped up any help would be cool
New Folder (18)? Those are rookie numbers!

Just curious: is there a reason you didn't copy/paste the text from the tracebacks into your post here (in spoiler tags pls) instead of posting screenshots of it?
 
  • Haha
Reactions: xort

annofrog

Newbie
Jul 24, 2017
27
26
Is it possible for the girls to get fully naked on there one, provided that the rules allow? if so what is required.
 

Darkace

Member
Sep 4, 2018
110
68
New Folder (18)? Those are rookie numbers!

Just curious: is there a reason you didn't copy/paste the text from the tracebacks into your post here (in spoiler tags pls) instead of posting screenshots of it?
It was faster due to my PC is offline
 

Darkace

Member
Sep 4, 2018
110
68
My bad where should I post this error at. new to reporting an error. A link to the area would be great
 

dalzomo

Active Member
Aug 7, 2016
884
715
My bad where should I post this error at. new to reporting an error. A link to the area would be great
In this thread is fine, dude. It's just easier to read the text if you paste it directly instead of trying to make it out from a grainy-ass cockeyed photo. :ROFLMAO:
 
3.40 star(s) 127 Votes