nope nothings happening.I'm fairly certain she has to be drunk, but not too drunk. Tipsy?
I believe the condictions you must fulfill to be able to talk about Motherhood are:Anyone know how i can unlock this option? I checked and tried everything but got nothing.
drunkLevel()
must be exactly 1 (I'm assuming this means just 1 drink).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);
}
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!I believe the condictions you must fulfill to be able to talk about Motherhood are:
Heres the actual code for just in case I misread it:
- 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).
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.
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.
- You have to have sex with Sylvie at least 6 times.
- You have to have Rut Sex with her at least 2 times.
Thank you!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.
It was added back in April, 2021.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
Huh, must have missed it or something...It was added back in April, 2021.
Welp, thats confirmation. thank you!Proof that it works:
View attachment 26466
The pregnancy does take a rather long time to come to term though. Too bad the pregnancy page on the wiki was out of date last I checked, it didn't list how long her pregnancy should last.