Also, if you want to do any sleuthing into the code behind the game to understand why the mechanics work the way they do, you can also open up the .html file in an editor like NotePad++ and search around within it.
For example, multiple players have complained that they don't seem to be able to access all the content in the game so far, and that's because of gating variables set by the dev that simply can't be reached yet. Let's look at the first time a player can visit the church. Their character will likely be unable to see all the content because their stats are not high enough.
In the code, this looks like:
Meaning that the exhibition stat must be greater than the flash_tits variable hard coded value, and submissive must be greater than one (1).
Further down within the code, we can find the flash_tits value, along with others.
What this means is that to access all flashing related content, the player will likely need an exhibition stat of 50 or more, which is not currently possible in the game as it is, unless I'm mistaken.
So, unless you're willing to edit/cheat the values for exhibition, depravity, submission, etc. stats (and even some of the NPC _rel values), you as a player may be banging your head against a wall trying to access everything.
For example, multiple players have complained that they don't seem to be able to access all the content in the game so far, and that's because of gating variables set by the dev that simply can't be reached yet. Let's look at the first time a player can visit the church. Their character will likely be unable to see all the content because their stats are not high enough.
In the code, this looks like:
Code:
‘Like this, Father?’
‘Are you teasing me, my child? More.’
<<if $exhibition > $flash_tits and $submissive >1
Further down within the code, we can find the flash_tits value, along with others.
Code:
/* Flashing */
<<set $flash_bra = 14>>
<<set $flash_panties = 29>>
<<set $flash_tits = 34>>
<<set $flash_pussy = 49>>
So, unless you're willing to edit/cheat the values for exhibition, depravity, submission, etc. stats (and even some of the NPC _rel values), you as a player may be banging your head against a wall trying to access everything.