Some hopefully constructive feedback:
* please explain "current slut" and "max slut". What is the difference between "slut" and "current slut"? How should you act to optimize something like "max slut to current slut"?
* is "BB" different from "Beach rep"?
* what does "Normal w/ BDSM" check?
* why does "no panties" give higher increases than "no either"? Or is the game really coded so that you should put your bra back on after you strip naked?
* some variables doesn't seem to see any use... maybe you could highlight those destined for future expansion? (For instance, you never use "hunger" except to decrease it by 5 when you eat something. Or maybe you miss out on cheer tryouts? Wouldn't "is "hunger" < 0 or something be a better way to express this, since people could text-search and follow the usage of the variable?)
* any reason you suddenly start prefixing variables such as "save.cheer_votes"? I mean, are you talking about "cheer" or something else?
* I assume "stalker set" and "stalker on" means the same thing. Note: "stalker" is only ever then referenced to say "if you failed & triggered the stalker, no choice makes a difference" I have a really hard time following your train of thought here...
Keep doing the good work!
I was struggling to try to keep transparent with what Shark is doing with the variables etc. under the assumption that they're going to come back when it's relevant, balanced with some of the checks eventually being quite complex to try to explain without a little essay. Sorry if it's a little hard to parse on it's own, I can review the language for consistency for the next edition.
For instance, "hunger" doesn't track how hungry you are as a number that goes up every time interval, it's a counter of the time index at which you last ate. This is simpler mechanically, but it means that the check is hard to capture visually in a spreadsheet. When you eat in the kitchen, it resets the "last_meal" number to that time, and if you eat the snack it moves that date 5 ticks later. Currently, the only significant check I know of is the track scene.
The BDSM clothing check passes if you're wearing an accessory with the BDSM tag, but only happens if you're otherwise wearing the starter clothing set.
The two stalker things are the same, I'll make the language match up. I'm always torn about how to express when there's a choice that may lead to different scenes but no permanent changes. I don't want to put in a bunch of work to make a complex chart that doesn't convey anything mechanical. I want it to contain the useful information without it being incomprehensible.
Thanks for the feedback, and again all the kudos to Shark for actually making the thing.