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
The events involving Cherie are stored in her events file.Now I need to force it to play I think
cassidy_cherie_next_steps
would play didn't you? Because the event after cassidy_cherie_next_steps
is
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+.Well the flag the makes a girl leave isname.set_gone_forever()
I think you can reverse it withname.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 masteremma.flags.samgirlfriend
is set toTrue
(if Sam introduced you as her masteremma.flags.samgirlmaster
is also set toTrue
but all it does is change some dialogue).emma.flags.samgirlfriend
can also be set toTrue
if during theYou must be registered to see the linksyou tell Emma Sam is cheating on Ryan and when asked if you love Sam and you answer Yes (the flagemma.flags.mikecheats
is also set toTrue
when you tell her Sam is cheating but it does nothing as of right now).
emma.flags.lovepoints = x
is for theYou must be registered to see the linksa value of3+
is necessary for the optimal outcome.
Emma will leave ifsamantha.flags.friendzone
is set toTrue
andemma.flags.samok
is set toFalse
.
The event for getting the greenlight to date Emma requiresDo 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.
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.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
"Office Party" is located in the folder labeled "ev" in in the file named "general_events" and "Meet with Sam and Emma" is located atI have another thing that's bugging me, where are these events located ? I need them to stop repeating, they repeat each other every week.
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.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"))
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"))
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"))
The event for getting the greenlight to date Emma requiressamantha.flags.friendzone
andemma.flags.samok
to be set toTrue
andemma.flags.samresolved
to be set toFalse
. Here's the Code fore the event trigger if needed.
or if you wanna skip all this here are the flagsYou don't have permission to view the spoiler content. Log in or register now.emma_event_09_okayed
trigger and what they're set to,emma.flags.samresolved = True
,emma.flags.nodate = False
,emma.flags.nokiss = False
, andemma.flags.samgirlfriend = False
First, humor me for a second. Are putting the commons like thisI can't get these to change in the developer console, is the only way to go in to the game files and edit?
emma.flags.samresolved = False
emma.flags.samresolved=False
You just need to work, and also for Aletta to be in the office and not be hidden.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.
Maybe thats why i usualy do work at 8 before Aletta shows up.You just need to work, and also for Aletta to be in the office and not be hidden.
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.