Would the command the resets Miko's preganancy work for Mai?

Mad Dog

Well-Known Member
Jun 1, 2018
537
281
This is the command for resetting Miko's pregnancy:

flags.MAIDENS_PREG_PATH = flags.MAIDENS_PREG_TS = flags.MIKO_PREG_REQ = flags.MIKO_PREG_NUM_KIDS = flags.MIKO_PREG_NUM_BIRTHS = flags.MIKO_PREG_ANN = undefined; PregManager.preg(GLOBALS.PREG_MIKO).debugEndPregnancy();

Would replacing "MIKO" with "MAI" work for resetting Mai's pregnancy? I'd assume that the flags would have the same naming convention but I'm not sure.
 

Mad Dog

Well-Known Member
Jun 1, 2018
537
281
I should've thought of this earlier, but I ended up testing it out myself.

It looks like I was right. Anybody who may want to reset Mai's pregnancy can just use this command.

flags.MAIDENS_PREG_PATH = flags.MAIDENS_PREG_TS = flags.MAI_PREG_REQ = flags.MAI_PREG_NUM_KIDS = flags.MAI_PREG_NUM_BIRTHS = flags.MAI_PREG_ANN = undefined; PregManager.preg(GLOBALS.PREG_MAI).debugEndPregnancy();
 

Joey75421

Active Member
Dec 3, 2016
33
23
31
I've tested it and that does work to reverse it so that you can change your choice.

flags.MAIDENS_PREG_PATH = flags.MAIDENS_PREG_TS = flags.MAI_PREG_REQ = flags.MAI_PREG_NUM_KIDS = flags.MAI_PREG_NUM_BIRTHS = flags.MAI_PREG_ANN = undefined; PregManager.preg(GLOBALS.PREG_MAI).debugEndPregnancy();

Edit: There's also an option to have both of them pregnant, giving you access to both of their pregnancy scenes. Chances are it will mess something up if a new quest or scene is added later that involves the choice you made, but it can be reversed as well.

Post Pregnancy for Both
flags.MIKO_PREG_REQ = flags.MAI_PREG_REQ = flags.MIKO_PREG_NUM_BIRTHS = flags.MAI_PREG_NUM_BIRTHS = flags.MIKO_PREG_ANN = flags.MAI_PREG_ANN = flags.MAI_PREG_NUM_KIDS = 1; flags.MIKO_PREG_NUM_KIDS = 2

Current Pregnancy for Both
flags.MIKO_PREG_REQ = flags.MAI_PREG_REQ = flags.MIKO_PREG_ANN = flags.MAI_PREG_ANN = 1; flags.MIKO_PREG_NUM_BIRTHS = flags.MAI_PREG_NUM_BIRTHS = flags.MAI_PREG_NUM_KIDS = flags.MIKO_PREG_NUM_KIDS = undefined; flags.MAI_PREG_TIMER = flags.MIKO_PREG_TIMER = 75000

Here would be a master reset that includes both of them to set everything to the very beginning.
flags.MAIDENS_PREG_PATH = flags.MAIDENS_PREG_TS = flags.MIKO_PREG_REQ = flags.MIKO_PREG_NUM_KIDS = flags.MIKO_PREG_NUM_BIRTHS = flags.MIKO_PREG_ANN = flags.MAIDENS_PREG_PATH = flags.MAIDENS_PREG_TS = flags.MAI_PREG_REQ = flags.MAI_PREG_NUM_KIDS = flags.MAI_PREG_NUM_BIRTHS = flags.MAI_PREG_ANN = undefined; PregManager.preg(GLOBALS.PREG_MIKO).debugEndPregnancy(); PregManager.preg(GLOBALS.PREG_MAI).debugEndPregnancy();
 
Last edited: