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
You must be registered to see the links
and start from there, start on the
You must be registered to see the links
, or jump straight onto the
You must be registered to see the links
.
Firstly you're gonna need to set all the
You must be registered to see the links
events as not done (I've finally figured out how) with
del DONE["event_name"]
(replace
event_name
with the namess I've provided) the event names are as fallows
samantha_event_A01
,
samantha_event_A02
,
samantha_event_A03
, and
samantha_event_A04
.
Second you're gonna need to set Samantha to be engaged
samantha.flags.engaged = True
will do the trick here.
For the wedding and
You must be registered to see the links
you're gonna need to set it so Samantha doesn't know
samantha.flags.knows_ryancheats = False
will do the trick here.
To do the wedding you're gonna need to setup the appointment. In the code it sets up the appointment with this line of code.
hero.calendar.add(wedding_day, LabelAppointment((12, 20), [], "Sam and Ryan's wedding", "samantha_event_B01"))
So try entering that into the console (I've never set up an appointment with the console before so I'm not sure if this will work).
To skip the wedding and start doing the
You must be registered to see the links
and/or
You must be registered to see the links
you'll need to set the wedding as having been done.
DONE["samantha_event_B01"] = game.days_played
will do that.
To skip to the wedding start doing the
You must be registered to see the links
you'll need to set
samantha_event_B01
,
samantha_event_B03
as done (
DONE["samantha_event_B01"] = game.days_played
and
DONE["samantha_event_B03"] = game.days_played
), set it so you are cucking Ryan (
samantha.flags.cuck_ryan = True
), and for this one since you've already told Samantha about Ryan's cheating you shouldn't need to touch
samantha.flags.knows_ryancheats
, but just incase it's
samantha.flags.knows_ryancheats = True
.
Bellow is the code for the triggers to all relevant events.