- Jul 24, 2021
- 239
- 205
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.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
"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.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"))