Ilovekatz19

Member
Jul 24, 2021
237
204
When you say the console, do you mean in the file events.rpy I just use the IDE's console when editing the file or are you referencing something else
The in game that opens when you press Shift+O assuming you have it enabled (you can enable it with something like UnRen.bat).
 

PsychoTwo

Newbie
Sep 4, 2021
63
7
The in game that opens when you press Shift+O assuming you have it enabled (you can enable it with something like UnRen.bat).
I don't know if the commands worked but there are just two that had errors A4 (which I imagine is because maybe I haven't done it yet) and the one to schedule the appointment for the wedding (it says that wedding day is not defined)
 

Ilovekatz19

Member
Jul 24, 2021
237
204
I don't know if the commands worked but there are just two that had errors A4 (which I imagine is because maybe I haven't done it yet) and the one to schedule the appointment for the wedding (it says that wedding day is not defined)
Seems I missed that apologies. To define the wedding day, use wedding_day = game.calendar.get_next_day_of_week("sunday") and try the appointment command again.
 

PsychoTwo

Newbie
Sep 4, 2021
63
7
And for changing a character's status with the MC is there a way ? (like if I want to get Cassidy from friend to pet or Kylie from friend to girlfriend)
 

Ilovekatz19

Member
Jul 24, 2021
237
204
And for changing a character's status with the MC is there a way ? (like if I want to get Cassidy from friend to pet or Kylie from friend to girlfriend)
name.status = "adjective" (replace name with the girl's name and adjective with any word really not that say for example snail would do anything as a status in all honesty)

Though from what I can tell this doesn't change much it's just what tells the game to show say Minami's status as "adopted sister". It doesn't affect stats, schedules in for example Cassidy, collar them, or how they address you.

To affect a girls stats name.love = x, name.love.min = x, name.love.max = x, name.lesbian = x, name.lesbian.min = x, name.lesbian.max = x, name.sub = x, name.sub.min = x, and name.sub.max = x.
Then there are the special stats for specific girls, they're as fallows kylie.yandere = x, kylie.yandere.min = x, kylie.yandere.max = x, morgan.male = x, morgan.male.min = x, morgan.male.max = x, minami.siscon = x, minami.siscon.min = x, minami.siscon.max = x, harmony.purity = x, harmony.purity.min = x, and harmony.purity.max = x (replace name with the girl's name and the x with a number (.sub can be set to negative for dominance)).

To change a girl's schedule name.flags.schedule = "adjective" (replace adjective with the name of a schedule so it's only really useful of a handful of girls right now). To have Cassidy visiting your office cassidy.flags.schedule = "assistant" is the command. My suggestion for finding schedule names is to just go into the code and search using the find function to find every instance of flags.schedule.

To collar a girl the command is name..collared = True (replace name with the girl's name).

To change how a girl address you the command is name.flags.mikeNickname = "nickname" replace nickname with any of the alternative ways a girl can address you. This does mean that say for example name.flags.mikeNickname = "Daddy" only works with Bree, but Master is universal since ever girl can do that.
 
  • Like
Reactions: PsychoTwo

PsychoTwo

Newbie
Sep 4, 2021
63
7
Shit I just found out I need to do the same for Bree because her gamer path won't let her submission go down lower than what it already is
 

Ilovekatz19

Member
Jul 24, 2021
237
204
Shit I just found out I need to do the same for Bree because her gamer path won't let her submission go down lower than what it already is
That one's actually easier. del DONE["bree_event_05"] is all that's needed. All the start of the maid path is checking for is if you started the gamer path.

You don't have permission to view the spoiler content. Log in or register now.
 

PsychoTwo

Newbie
Sep 4, 2021
63
7
And I don't need to get rid of all the other events that I've done in the gamer path ? (if it doesn't change anything then I won't touch them)
 

Ilovekatz19

Member
Jul 24, 2021
237
204
And I don't need to get rid of all the other events that I've done in the gamer path ? (if it doesn't change anything then I won't touch them)
Yep, the only reason I suggested you get rid of all those events for Sam was to avoid glitches because after the revenge path you Jump back onto the path you deleted the progress of so better safe than sorry, but with Bree there's 0 overlap, you'd think her dad visiting would be the same event for both paths but nope two whole different events.
 
  • Like
Reactions: PsychoTwo

ShiroMax

New Member
Sep 9, 2021
2
0
So you're entering them like this
emma.flags.samresolved=False
Yea try entering emma.flags.samresolved = False instead I know it sounds strange but it's how I do it and I've never had a problem. If that doesn't work, then I'm out of ideas on why.
DO YOU KNOW ABOUT ALEXIS i becom the ceo and still didnot achives this
and how to find the code file ?
 
Last edited:

Melonine

New Member
Dec 13, 2024
1
0
I tried to do the lavish events and now shes stuck at 60 i got a quest line for spank hut i cant do anything i went through 40 ingame days and nothing happened any idda how to fix this im on android
 

Ilovekatz19

Member
Jul 24, 2021
237
204
DO YOU KNOW ABOUT ALEXIS i becom the ceo and still didnot achives this
and how to find the code file ?
Are you saying you're having trouble unlocking Alexis or are you having trouble with Emma?

The "code file" is three files, scripts.rpa for nonDLC content and dlc_breemc.rpa and dlc_fafow.rpa for DLC content.

To be able to edit the code you'll need to extract the RPAs. You can do that with UnRen.bat, , and (as I've recently figured out) . Next assuming you didn't use , you're going to need to turn the resulting RPYCs into RPYs. I've found that does the job but if you know of something else use that. One you have the RPYs just edit it with you choice of program for python.

The code for the girls are all in ch under their respective name unless it's from the DLC in which case it's either in dlc_fafow/ch, or dlc_breemc/ch (depends on which DLC the content is from) then under the girls respective names. The harems are in the same location(s) just instead under harems and/or harems_full. If you can't find the code where you think it should be just start looking in other files (it's easiest if you use dialogue as a start point)

The is in ev in the file labeled general_events . The event's name in the code is alexis_event_01. This is what it's trigger looks like.

You don't have permission to view the spoiler content. Log in or register now.
 

Zod666

Member
Nov 1, 2020
168
312
Well there are three ways to do this (six if you count editing the code of the appropriate events but for now I'll stick to the console) somehow do the and start from there, start on the , or jump straight onto the .
Oh im about to start on Sam, wiki isnt really clear on revenge path. So to trigger revenge path i should let wedding happen and not tell Sam about cheating? should i even catch Ryan cheating?
 

Ilovekatz19

Member
Jul 24, 2021
237
204
Oh im about to start on Sam, wiki isnt really clear on revenge path. So to trigger revenge path i should let wedding happen and not tell Sam about cheating? should i even catch Ryan cheating?
You should let the wedding happen and you should catch Ryan cheating. If you fail to catch him before the wedding go to the bathroom during the wedding (you'll find him getting a blowjob), going to the bathroom during the wedding is also needed for if you want the with . You then let the play out and when you're given the chance to tell here and when asked on why you waited for so long tell her she's not much better. after all that you'll finally be on the . You also supposedly can go from wedding to if you go for a walk, but I've never done that since from my understanding I'd be giving up the with Natalie. So I just take the long way.
 
  • Like
Reactions: Zod666

MisterDuck

Member
Aug 31, 2021
383
238
Does anyone have a old save.
I want to try a new game+ because I'm too busy to raise my stats and get money again.
I usually did try new versions using New Game+ but I lost my old save and I'm too lazy to do a new game.
I don't want to use cheats because I don't want to damage my save
 

Ilovekatz19

Member
Jul 24, 2021
237
204
is there any way to do maid and gamer path at same time?
In the vanilla game no. Someone did upload a mod for that somewhere on this thread though. If you don't feel like looking for the mod you can instead use the console. You just need to set the first event of the path you started s not being done with the command del DONE["event_name"] (replace event_name with the name of the event in the code). If you decide to use the console to do both I suggest you do the all the way then do the . I suggest this because the causes a schedule change and might cause a problem if you do both paths at the same time or the other way around.

Here are the triggers for the starting events for both paths

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
 
  • Wow
Reactions: Shionnnnnnnnnnn
Nov 8, 2021
121
30
In the vanilla game no. Someone did upload a mod for that somewhere on this thread though. If you don't feel like looking for the mod you can instead use the console. You just need to set the first event of the path you started s not being done with the command del DONE["event_name"] (replace event_name with the name of the event in the code). If you decide to use the console to do both I suggest you do the all the way then do the . I suggest this because the causes a schedule change and might cause a problem if you do both paths at the same time or the other way around.

Here are the triggers for the starting events for both paths

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
ty
 
  • Like
Reactions: Ilovekatz19
Nov 8, 2021
121
30
In the vanilla game no. Someone did upload a mod for that somewhere on this thread though. If you don't feel like looking for the mod you can instead use the console. You just need to set the first event of the path you started s not being done with the command del DONE["event_name"] (replace event_name with the name of the event in the code). If you decide to use the console to do both I suggest you do the all the way then do the . I suggest this because the causes a schedule change and might cause a problem if you do both paths at the same time or the other way around.

Here are the triggers for the starting events for both paths

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
does this mod work on the newest version?
 
3.60 star(s) 295 Votes