ontach

Well-Known Member
Apr 8, 2018
1,258
1,461
370
RecYesterday at 8:53 PM
quick fix for the patch (and base 0.9), just drop the file into the "game" folder and overwrite the original.
  • Fixes a map issue when you're only following one of the girls route.
I'll update steam and itch separately.
Do we have this here already?
 

cbsx

Member
May 4, 2020
283
432
204
nah... he has a point, I deleted my persistent file and I can't trigger the first two images regardless of paths/choices, MC/FeMC...
 
Jul 15, 2018
13
23
159
By playing the game
nah... he has a point, I deleted my persistent file and I can't trigger the first two images regardless of paths/choices, MC/FeMC...
The game uses three (or rather 4!) variables to control some of the content:
You don't have permission to view the spoiler content. Log in or register now.
as well as:
You don't have permission to view the spoiler content. Log in or register now.
Somehow I think that these variables are set or used incorrectly, at least regarding the version distributed here which is supposed to have all the content, as far as I am aware.
It also begs the question why this many variables are necessary for tracking the game version, since as far as I am aware the only difference should be "Steam" or "not Steam", right?
 

flaviopaganini

Steam Fanboy
Donor
Feb 25, 2024
1,423
2,969
349
The game uses three (or rather 4!) variables to control some of the content:
You don't have permission to view the spoiler content. Log in or register now.
as well as:
You don't have permission to view the spoiler content. Log in or register now.
Somehow I think that these variables are set or used incorrectly, at least regarding the version distributed here which is supposed to have all the content, as far as I am aware.
It also begs the question why this many variables are necessary for tracking the game version, since as far as I am aware the only difference should be "Steam" or "not Steam", right?
This variable `uVersion` is used a few times, and from what I saw, it is when the MC's father is going to hit the stepmother. If `uVersion` is true, she says she's not taking the pill, and later in a dialogue, it seems that he calls the stepmother's daughter 'sister'.
 
Jul 15, 2018
13
23
159
This variable `uVersion` is used a few times, and from what I saw, it is when the MC's father is going to hit the stepmother. If `uVersion` is true, she says she's not taking the pill, and later in a dialogue, it seems that he calls the stepmother's daughter 'sister'.
Since my earlier post seems to have caused more confusion rather than answer any of the questions, here is a more detailed overview of what these variables do:
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
So there you have it a (mostly) complete list of these 3(4) variables that control the game "version" and what exactly they do, although it still doesn't explain why different variables are needed for inclusions/exclusions!
 

Cygnus X-1

Well-Known Member
Jul 17, 2021
1,320
1,226
205
Since my earlier post seems to have caused more confusion rather than answer any of the questions, here is a more detailed overview of what these variables do:
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
So there you have it a (mostly) complete list of these 3(4) variables that control the game "version" and what exactly they do, although it still doesn't explain why different variables are needed for inclusions/exclusions!
Interesting. I'm sure I have seen in my playthrough what you are describing in the "persistent.uVersion" section. But that was an old version. Now I checked and the variable is not set in my save files.
The persistent uversion seems to relate to early game stuff. I guess the dev changed the way it is done mid development, but forgot to tie in the older stuff to a new variable set elsewhere.
c4g looks like it is used to provide the users with a "safe" version.
The basic uVersion turns on and off "incest" among other stuff.
The last one, "steamy" is baffling. Just an additional safety layer for various distribution channels like patreon and steam?
 

Mathesar

Active Member
Mar 20, 2018
760
1,633
304
Since my earlier post seems to have caused more confusion rather than answer any of the questions, here is a more detailed overview of what these variables do:
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
You don't have permission to view the spoiler content. Log in or register now.
So there you have it a (mostly) complete list of these 3(4) variables that control the game "version" and what exactly they do, although it still doesn't explain why different variables are needed for inclusions/exclusions!
The Ellie bathroom scene may be broken, at least on 0.9. Haven't downloaded 0.9.1 yet. I've attached a custom file named patch.ryp that will set c4g and steamy to False while setting persistent.uVersion to True, which together enable all the working lewd content. Just extract to the game folder. Could be a handy patch for the main post.

Edit: Checked 0.9.1 and no relevant changes regarding the bathroom scene. Looks like conditions to trigger it are fairly narrow and partially dependent on RNG. Hard to test even if it's working right.
 
Last edited:

Vetrais

Newbie
Mar 31, 2024
52
38
104
The Ellie bathroom scene may be broken, at least on 0.9. Haven't downloaded 0.9.1 yet. I've attached a custom file named patch.ryp that will set c4g and steamy to False while setting persistent.uVersion to True, which together enable all the working lewd content. Just extract to the game folder. Could be a handy patch for the main post.

Edit: Checked 0.9.1 and no relevant changes regarding the bathroom scene. Looks like conditions to trigger it are fairly narrow and partially dependent on RNG. Hard to test even if it's working right.
I think it's more likely just broken in how it's coded in Conditions.Rpy for that. The code has it as "if uVersion == 0:" which looks wrong. I'd expect it to just be "if uVersion:" as that matches how it's used in other files like Script.rpy (or possibly "if uVersion == True:" if you really wanted an explicit comparison). Like even if that 0 was a bool value, that'd translate to False so that looks more to be a typo than anything else.

Edit: Granted, this isn't a coding language I typically work in so that's more based off more common C# stuff so could definitely be wrong. There do look to be times when parameters are compared both for True/false and numeric values so maybe it can store both or something.
 
Last edited:

Wregax

Newbie
Jul 21, 2020
30
8
27
quick question, does the v.0.8.5 mod still work with the new v.0.9.1, up to 0.8.5 content? Or will it not work at all?
 

Mathesar

Active Member
Mar 20, 2018
760
1,633
304
I think it's more likely just broken in how it's coded in Conditions.Rpy for that. The code has it as "if uVersion == 0:" which looks wrong. I'd expect it to just be "if uVersion:" as that matches how it's used in other files like Script.rpy (or possibly "if uVersion == True:" if you really wanted an explicit comparison). Like even if that 0 was a bool value, that'd translate to False so that looks more to be a typo than anything else.

Edit: Granted, this isn't a coding language I typically work in so that's more based off more common C# stuff so could definitely be wrong. There do look to be times when parameters are compared both for True/false and numeric values so maybe it can store both or something.
Which is why I also tried editing conditions.rpy. Still couldn't get it, or the other scenes that can happen, to appear. Though it could just trigger later in the game than I tested.
 

Machete

Engaged Member
Apr 7, 2020
3,109
5,754
657
Ok, i tried to do a playthrough going only after the bargirl and rejecting all the others...

Well. The game recognize this happened and the paths are closed but the story kinda behave like MC's banging everyone. Then, it forces MC in a relationship out of nowere with the little rapist redhead. I'm ok you cannot avoid MC's rape, but why after you automatically are in a relatioship with the sister? That sucks very hard.
 
4.30 star(s) 216 Votes