don't do bf quest..How do I get to Peach Street?
How do you get Nao pregnant?Anyone know how to get the other girls to have sex with the daddy clients as well?
So far only Nao can do it and that was because of story reasons.
Edit: I literally got the answer to that 5 minutes after posting.
You need to get Nao pregnant and let her give birth. This unlocks a new quest with the doctor from the school. This unlocks stuff to help you out.
Nice, thank UI think a lot of people don’t really want to download it for 6 hours, so I did it myself. Enjoy
Mega
You need to go down and continue the fallen route until you get a quest from the infirmary lady. She gives you some sort of serum which you can use on Nao in the base. You need to buy and unlock the base beforehand.How do you get Nao pregnant?
var _Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
Game_Interpreter.prototype.pluginCommand = function(command, args) {
_Game_Interpreter_pluginCommand.call(this, command, args);
let textValue = "";
if (args.length >= 6)
{
let argSize = args.length;
for (let i = 5; i < argSize; i++)
{
textValue += args[i];
if (i < argSize - 1)
{
textValue += " ";
}
}
}
if (command === 'showWindow') {
$gameScreen.showSimpleWindow(+args[0], +args[1], +args[2], +args[3], +args[4], textValue, 0);
} else if (command === 'showNoFrameWindow') {
$gameScreen.showSimpleWindow(+args[0], +args[1], +args[2], +args[3], +args[4], textValue, 1);
} else if (command === 'showNoBackWindow') {
$gameScreen.showSimpleWindow(+args[0], +args[1], +args[2], +args[3], +args[4], textValue, 2);
} else if (command === 'eraseWindow') {
$gameScreen.eraseSimpleWindow(+args[0]);
}
};