- Mar 3, 2018
- 1,427
- 457
I think on the discord next version is around May-ish? You can check there. Patrons also get access to earlier versions if you’re eager.Do we know what's going to be in the next version?
May for public release, info is on discord.Any upcoming updates?
Very basically... Corruption rises when you do things to the girl, like fondling or groping. Fear rises when you're mean, spanking or doing things that are really bad/might get you in trouble with the PTA. Affection rises when you're nice to them.Is there a guide to this game, I have a hard time figuring out how Corruption, Fear, Affection works, and when I visit the girls in the afternoon and try to convince their mothers, there is to stats W and R, what are those ???
I don’t know what you mean by W and R stats.Is there a guide to this game, I have a hard time figuring out how Corruption, Fear, Affection works, and when I visit the girls in the afternoon and try to convince their mothers, there is to stats W and R, what are those ???
That's nice work. The only things I can think of to add, one would be about discipline with the girls. I think it helps the girls ignore what you're doing to keep working on the exam. Higher discipline, harder to distract.Well I don't know why I spent my day writing this but here's my guide on the game. I spend a bunch of it explaining stats (hopefully) thoroughly and also give my method of playing. I think a bunch of this becomes invalid next patch but we'll cross that road when we get there. There's probably some stuff I'm just wrong about in here, so if you know somethings wrong let me know and I'll correct it.
for Ximena, her corruption was increased by 14.0, the numbers in braces are the current total, and the ratio the trait was modified by. the base is ten, times 1.4 is 14.These pics are from a new game I started just to get the pics, it is when I ask the mom about the free use law, what does these numbers mean ???
View attachment 3589340
View attachment 3589341
View attachment 3589343
I’ll look at the code to see what’s happening there. I’m going to guess that the r is a random roll with a value of 38.These pics are from a new game I started just to get the pics, it is when I ask the mom about the free use law, what does these numbers mean ???
View attachment 3589340
View attachment 3589341
View attachment 3589343
I think, through looking at the code, that discipline only really affects a few checks and mainly the rules break. It might be more important than I think if it determines how girls break the forced nudity. Corruption, affection and fear have a much larger impact on the pressure growth. I will test this with a custom made girl with maxed discipline at the start to ensure.That's nice work. The only things I can think of to add, one would be about discipline with the girls. I think it helps the girls ignore what you're doing to keep working on the exam. Higher discipline, harder to distract.
I do agree about the panty raid, I've only just started tinkering with it, but I've been considering reducing the fear gains for both somewhat. Still not sure where it should be, but I'm leaning to halving the gains overall. If anybody has any thoughts about it, I'm always happy to hear them. I've been a bit burned out, and life got really busy. It's probably going to be even busier over the summer, but a lot of things have been changing. Hopefully I can spend a bit more time on side-projects.
Basically, the will shows you what the current outcome is, and the rdm shows you what random value was used to achieve this. Together, they allow you to estimate your chances of getting the result you want with the current stats. rdm can change from 0 to 50, and each 9 in the rdm increases the will by 5. So if you achieved 60.5555 with the random of 38, with the maximum random of 50 you can get 60.5555 + ((50-38)*5)/9 = 60.5555 + 60/9 = 60.5555 + 6.6666 = 67.2222 simply by rolling back the test, saving the game, loading it back, and rerolling.I’ll look at the code to see what’s happening there. I’m going to guess that the r is a random roll with a value of 38.
EDIT: Here's the code for the section.
$ _rdm = renpy.random.randint(0,50)
$ _will = (selectedGirl.mother.fear*0.6 + selectedGirl.mother.corruption + selectedGirl.mother.affection*0.2 + _rdm)/1.8
"(DEBUG) w:[_will] | r:[_rdm]"
Pretty much it's showing your outcome based upon the mom's stats and random roll. Looking further into the code I'm guessing this led to the outcome where the mom is willing to go topless and you invite the daughter into the room. The fact that the daughter got fear means you got the more negative outcome.
It's random, but using their mouth gives less player arousal (2) than using pussy or ass (random between 3 to 8). The only gameplay mechanic associated with the system is whether or not you can give a facial. You could change the code to give less arousal if you really wanted.Question: Is there a way to change how fast you cum? cause i feel like you cum way way to fast.
in scripts/lb_examevents.rpy - you'll be looking for label event_fuckAss and label event_fuckPussy - then, within the labels, is playerObject.arousal - it's a random number generator with min and max valuesExactly what i meant, do you have any idea of where in the code i could find it?