Doneitall

New Member
Jun 1, 2023
9
8
check these in the folder called "game" just put them there don't forget to remove old mod
I think I found it for people looking.

Can we get a sticky on Bree Gamer+Maid mod? I've been searching for it for far too long now. All I see is people asking where it's at... I'm going to find it eventually but it would be so nice to front page it.
 

Ilovekatz19

Member
Jul 24, 2021
267
257
Ok nice, so what lines do I need to change in events.rpy, or maybe I misunderstood what file needs changes
You're trying to make it so you can do cassidy_cherie_next_steps and have cassidy_cherie_missed_party impossible to trigger correct?

If so first just use the find function of what ever your using and enter the event name.

Second the easiest way to make cassidy_cherie_next_steps easier to trigger would be to add a love check and get rid of the Cherie check Like this.

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

and for making cassidy_cherie_missed_party impossible a love check above 200 alongside the removale of the Cherie check here aswell.

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

PsychoTwo

Newbie
Sep 4, 2021
64
7
Oh, there's something that I didn't think about, the event where Cassidy leaves won't play thanks to the changes but because she was supposed to leave I think that the event following the party won't play
 

Ilovekatz19

Member
Jul 24, 2021
267
257
Oh, there's something that I didn't think about, the event where Cassidy leaves won't play thanks to the changes but because she was supposed to leave I think that the event following the party won't play
Now I need to force it to play I think
The events involving Cherie are stored in her events file.

You did also make it so cassidy_cherie_next_steps would play didn't you? Because the event after cassidy_cherie_next_steps is (which in the code is in Cherie's events file under cherie_cold_call. Here's what the trigger looks like so you what you're looking for if needed) and the only requirements are that you need to have done cassidy_cherie_next_steps and have a charm of 75+.

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

PsychoTwo

Newbie
Sep 4, 2021
64
7
Nevermind, I made the first event that you talked about impossible, it needed to be possible I just misunderstood what I needed to do, I changed the love needed to something that I already obtained
 
  • Like
Reactions: Ilovekatz19

omegashrn

Member
Donor
Jul 26, 2017
179
168
Do you by chance know how I can get back onto Emma's path, by the time she was introduced I had already made Samantha a my slave. I tried what the wiki recommended and friendzoned her, and then picked her back up changing her status to friend. But can still not date Emma, all she says if I don't see you like that.





Well the flag the makes a girl leave is name.set_gone_forever() I think you can reverse it with name.unhide() (replace name with the girl's name (lowercase)), but I've never had an excuse to test it so I'm not certain. Also here's a list of flags and what triggers them that could roadblock you from Emma's content.

If Sam introduces you as her boyfriend or master emma.flags.samgirlfriend is set to True (if Sam introduced you as her master emma.flags.samgirlmaster is also set to True but all it does is change some dialogue). emma.flags.samgirlfriend can also be set to True if during the you tell Emma Sam is cheating on Ryan and when asked if you love Sam and you answer Yes (the flag emma.flags.mikecheats is also set to True when you tell her Sam is cheating but it does nothing as of right now).

emma.flags.lovepoints = x is for the a value of 3+ is necessary for the optimal outcome.

Emma will leave if samantha.flags.friendzone is set to True and emma.flags.samok is set to False.
 

PsychoTwo

Newbie
Sep 4, 2021
64
7
I have another thing that's bugging me, where are these events located ? I need them to stop repeating, they repeat each other every week.
 

Ilovekatz19

Member
Jul 24, 2021
267
257
Do you by chance know how I can get back onto Emma's path, by the time she was introduced I had already made Samantha a my slave. I tried what the wiki recommended and friendzoned her, and then picked her back up changing her status to friend. But can still not date Emma, all she says if I don't see you like that.
The event for getting the greenlight to date Emma requires samantha.flags.friendzone and emma.flags.samok to be set to True and emma.flags.samresolved to be set to False. Here's the Code fore the event trigger if needed.

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

or if you wanna skip all this here are the flags emma_event_09_okayed trigger and what they're set to, emma.flags.samresolved = True, emma.flags.nodate = False, emma.flags.nokiss = False, and emma.flags.samgirlfriend = False


I have another thing that's bugging me, where are these events located ? I need them to stop repeating, they repeat each other every week.
"Office Party" is located in the folder labeled "ev" in in the file named "general_events" and "Meet with Sam and Emma" is located at ch/emma in the events file. I guessing the reason you want to know this is because you want to change the triggers for these well if so these events use what I can best describe as dynamic triggers due to their nature as appointments.

The events for setting up these appointments are as fallows.

The "Office Party" appointments is set up in the event office_party_set_up and uses this line of code to set up the appointment.

$ hero.calendar.add(game.calendar.get_next_day_of_week("friday"), LabelAppointment(20, [], "Office Party", "office_party", "office_party_missed"))

Also the code for the trigger.

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

There are two appointments that use "Meet with Sam and Emma" as the name both with two ways the appointment is set up. The one have in your screenshot shows the appointment time to be 16:00 so I'll tell you that one. It's set up event is emma_event_03 and uses this line of code.

$ hero.calendar.add(day, LabelAppointment(16, [], "Meet with Sam and Emma", "emma_event_03_appointment", "emma_event_03_appointment_missed"))

Also here's the code for the trigger.

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

emma_event_03_appointment_missed also sets up the appointment but unlike emma_event_03 it doesn't use a trigger instead it uses the appointment to trigger just instead as the name suggests it's the event that's triggered when you miss the appointment. It uses this line of code to reset up the appointment.

$ hero.calendar.add(game.days_played + 6, LabelAppointment(16, [], "Meet with Sam and Emma", "emma_event_03_appointment", "emma_event_03_appointment_missed"))
 

omegashrn

Member
Donor
Jul 26, 2017
179
168
I can't get these to change in the developer console, is the only way to go in to the game files and edit?




The event for getting the greenlight to date Emma requires samantha.flags.friendzone and emma.flags.samok to be set to True and emma.flags.samresolved to be set to False. Here's the Code fore the event trigger if needed.

You don't have permission to view the spoiler content. Log in or register now.
or if you wanna skip all this here are the flags emma_event_09_okayed trigger and what they're set to, emma.flags.samresolved = True, emma.flags.nodate = False, emma.flags.nokiss = False, and emma.flags.samgirlfriend = False
 

Ilovekatz19

Member
Jul 24, 2021
267
257
I can't get these to change in the developer console, is the only way to go in to the game files and edit?
First, humor me for a second. Are putting the commons like this
emma.flags.samresolved = False
or this
emma.flags.samresolved=False

Second, yea if you can't get the console to work editing the game files it probably your only option from that point. Well that or edit your save and I'll be honest I don't know how to edit a Ren'Py save.
 

Zod666

Member
Nov 1, 2020
187
346
anyone know whats the trigger for Lavish to show up?
I already met her and Cassidy at office party, but she dosent show up at office and not on my character guide list, but Cassidy is.
 

Ilovekatz19

Member
Jul 24, 2021
267
257
anyone know whats the trigger for Lavish to show up?
I already met her and Cassidy at office party, but she dosent show up at office and not on my character guide list, but Cassidy is.
You just need to work, and also for Aletta to be in the office and not be hidden.

You don't have permission to view the spoiler content. Log in or register now.
 
  • Like
Reactions: Zod666
3.60 star(s) 300 Votes