- Feb 2, 2017
- 219
- 315
Overview
This thread aims to help those who are stuck at certain deadend-routes, want to change a choice way back without starting over, or simply for those who like to customize their playthough to suit their needs. Changing variables manually can result in a balance not intended by the game, so use at your own discretion.
You don't have permission to view the spoiler content.
Log in or register now.
The most common variables are the ones connected to your Daughter. They're pretty straight forward, but it goes much deeper than that:
Code:
v_stat_d_friend
v_stat_d_love
v_boobs_points
v_ass_points
v_exhibition_points
v_sharing_points
v_BDSM_points
v_corruption
Deadend Routes can be annoying, most noticely when Lucas show up if you havn't practiced Selfdefence with the Daughter. The game checks for 'v_day10_d_selfdefense' to be True after Lucas says: "But I’ll be doing a lot more than simply spying on you while I’m here..", and thus the check can be won by using the console
Code:
v_day10_d_selfdefense=True
Code:
v_day10_d_selfdefense=True
jump lb_day13_lucas
Code:
jump lb_day13_apt_selfdefence
For some rewards it can be tricky to figure out what is being checked for, and why they're not working for you. You could download a full unlock file like
You must be registered to see the links
, but perhaps you want to unlock them yourself but only change a choice far back without replaying the whole ordeal. Like:You don't have permission to view the spoiler content.
Log in or register now.
For Chapter.2 variables are stored just as endofgame screen appears. These are the choices that matter for the next Chapter. No garantees they're all to be used, but it seems likely.
You don't have permission to view the spoiler content.
Log in or register now.
Made a Custom Script that's very VERY useful when going from Chapter 1 to 2. Here you are able to craft savedata used for Chapter 2 ingame, and in no time at all. A quick-starter for chapter 2 so-a-say. It includes some default routes for you to choose from, but you're able to make a custom route with the options suplied.
You must be registered to see the links
Useful commands for you to mess around with
Code:
dir() //shows all stored variables, that's alot
renpy.get_all_labels() //labels can be used by the 'jump' command like in the examble above
Feel free to ask in this thread if you got specific questions how parts of the game works (within reason, I've only just started learning this yesterday :winkytongue. If scenes dont trigger, and you're not sure why that is. Maybe people here can help.