themagiman

Well-Known Member
Mar 3, 2018
1,347
406
Is there a storyline where kyle ends up knocking up a bunch of the girls? I only found the one scene with the two milfs
 
Oct 14, 2020
111
126
If this works the way I think it does, this would be a great thing to share on here. It sounds like a great way of avoiding failed checks and replaying sections to find optimal routes.
Probably close to what you think. I have this data setup for path choices I want to force:

Code:
path_choices = {
    'OriginsQuestion': 'Renaissance Man.',
    'Investigate the lights.': 'Try to draw in the dancing pink light.',
    'Check the text message.': 'Go upstairs and visit Monica',
    'Go upstairs and visit Monica.': 'Open the door for a peek.',
    'Open the door for a peek.': 'Ignore all of the lights and move on',
    'MonicasFloor': 'Ask the girl if she needs help.',
    'MonicaDorm1': set(['MonicaParty1', 'WilsonOrange1']),
    'WilsonOrange1': 'Tell her you just want to chat',
    'MonicaOutside1': 'Savor the hug.',
    'MonicaHandholdOutside': 'Answer positively with a kiss.',                                    # monica_gf
    'Tough it out with Jake and Kyle.': 'Try to draw in the humming brown light',
    'PepRallyTransformKyle1' : 'Assert your dominance.',
    'KyleReturnPepRally': 'Ignore him and walk back to the dorm',
    ...
}
And the pathing code uses the engine to figure out how to make those choices happen. Plenty of those choices are "nothing here really matters, so just pick one to keep the branching ratio down" :).
 
  • Like
Reactions: j_1993_m
4.60 star(s) 129 Votes