Sylvie Motherhood?

XBoxMaster131

Well-Known Member
Oct 18, 2016
4,748
1,343
Anyone know how i can unlock this option? I checked and tried everything but got nothing.
 

Theron

Well-Known Member
Nov 8, 2018
3,668
1,392
44
I'm fairly certain she has to be drunk, but not too drunk. Tipsy?
 

OrangeBurner

Well-Known Member
Mar 13, 2022
305
72
Anyone know how i can unlock this option? I checked and tried everything but got nothing.
I believe the condictions you must fulfill to be able to talk about Motherhood are:
  • You have to have sex with Sylvie at least 6 times.
  • You have to have Rut Sex with her at least 2 times.
  • Sylvie's drunkLevel() must be exactly 1 (I'm assuming this means just 1 drink).
Heres the actual code for just in case I misread it:
JavaScript:
else if (flags["SYLVIE_PREG_EMAIL1"] != 1)
{
    if (flags["SYLVIE_PREGTALK_HER_TIMER"] != undefined) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie is thinking about it and will email you about her decision.");
    else if (sexedSylvie() < 5 || flags["SYLVIE_RUTSEX"] == undefined || flags["SYLVIE_RUTSEX"] < 1) addDisabledButton(6, "Motherhood", "Motherhood", "You don’t know enough about Sylvie to broach this topic.");
    else if (sylvie.drunkLevel() > 1) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie is too drunk for such a serious conversation.");
    else if (sylvie.drunkLevel() < 1) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie isn’t relaxed enough to talk about this.");
    else addButton(6, "Motherhood", window.sylvieXpacMotherhood);
}
For some reason, In this new update I cannot access all of the source code in the Debugger like before.
So, I've had to get the minified javascript which is hard to read:
JavaScript:
function() {
    var e = 0;
    return hours >= 16 && (e = 6 * (hours - 16)),
        hours <= 3 && (e = 6 * (hours + 8)), null == flags.SYLVIE_BOOZE_BOUGHT && (flags.SYLVIE_BOOZE_BOUGHT = 0),
        null == flags.SYLVIE_BOOZE_TIME && (flags.SYLVIE_BOOZE_TIME = 0),
        flags.SYLVIE_BOOZE_TIME + 720 < GetGameTimestamp() && (flags.SYLVIE_BOOZE_BOUGHT = 0),
        (e += flags.SYLVIE_BOOZE_BOUGHT) >= 50 ? 2 : e >= 25 ? 1 : 0
}

// I haven't really gone through this to fully understand it.
// But you want this to return exactly 1 to get to talk about Motherhood.
 

XBoxMaster131

Well-Known Member
Oct 18, 2016
4,748
1,343
I believe the condictions you must fulfill to be able to talk about Motherhood are:
  • You have to have sex with Sylvie at least 6 times.
  • You have to have Rut Sex with her at least 2 times.
  • Sylvie's drunkLevel() must be exactly 1 (I'm assuming this means just 1 drink).
Heres the actual code for just in case I misread it:
JavaScript:
else if (flags["SYLVIE_PREG_EMAIL1"] != 1)
{
    if (flags["SYLVIE_PREGTALK_HER_TIMER"] != undefined) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie is thinking about it and will email you about her decision.");
    else if (sexedSylvie() < 5 || flags["SYLVIE_RUTSEX"] == undefined || flags["SYLVIE_RUTSEX"] < 1) addDisabledButton(6, "Motherhood", "Motherhood", "You don’t know enough about Sylvie to broach this topic.");
    else if (sylvie.drunkLevel() > 1) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie is too drunk for such a serious conversation.");
    else if (sylvie.drunkLevel() < 1) addDisabledButton(6, "Motherhood", "Motherhood", "Sylvie isn’t relaxed enough to talk about this.");
    else addButton(6, "Motherhood", window.sylvieXpacMotherhood);
}
For some reason, In this new update I cannot access all of the source code in the Debugger like before.
So, I've had to get the minified javascript which is hard to read:
JavaScript:
function() {
    var e = 0;
    return hours >= 16 && (e = 6 * (hours - 16)),
        hours <= 3 && (e = 6 * (hours + 8)), null == flags.SYLVIE_BOOZE_BOUGHT && (flags.SYLVIE_BOOZE_BOUGHT = 0),
        null == flags.SYLVIE_BOOZE_TIME && (flags.SYLVIE_BOOZE_TIME = 0),
        flags.SYLVIE_BOOZE_TIME + 720 < GetGameTimestamp() && (flags.SYLVIE_BOOZE_BOUGHT = 0),
        (e += flags.SYLVIE_BOOZE_BOUGHT) >= 50 ? 2 : e >= 25 ? 1 : 0
}

// I haven't really gone through this to fully understand it.
// But you want this to return exactly 1 to get to talk about Motherhood.
Thank you very much!
 

TheShepard256

Well-Known Member
  • You have to have sex with Sylvie at least 6 times.
  • You have to have Rut Sex with her at least 2 times.
Looking at the code you shared, you're overstating both of these by 1; the disabling occurs when they're strictly less than 5 or 1, respectively, not less than or equal to. Which means you need to fuck her at least 5 times and have Rut Sex with her at least once.
 

XBoxMaster131

Well-Known Member
Oct 18, 2016
4,748
1,343
Looking at the code you shared, you're overstating both of these by 1; the disabling occurs when they're strictly less than 5 or 1, respectively, not less than or equal to. Which means you need to fuck her at least 5 times and have Rut Sex with her at least once.
Thank you!
 

XBoxMaster131

Well-Known Member
Oct 18, 2016
4,748
1,343
Ok i managed to get the talk scene, but herein lies another question...

Has her preggo content even been added yet? cuz i waited a few in game months and nothing happened, so im kinda suspicious that it may not have
 

Animefan666

Well-Known Member
Sep 6, 2020
819
313
Ok i managed to get the talk scene, but herein lies another question...

Has her preggo content even been added yet? cuz i waited a few in game months and nothing happened, so im kinda suspicious that it may not have
It was added back in April, 2021.
 
Last edited: