Hand Milking auto-masturbation

Xeivous

Well-Known Member
Sep 21, 2015
2,465
1,404
Anyone know what the triggers for the automatic masturbation for hand-milking are? I'm pretty sure it's a quantity thing rather than a percentage of total capacity thing, but I'm not 100% certain of that.

I'm trying to make a milky character that I don't need to micro-manage too much and I keep running into having to always masturbate after milking myself.
 

Noob Salad

Captain Shitpost
Aug 26, 2015
4,372
1,560
I think you need to actually go into the Masturbate menu.

@Jacques00: I've never even heard of this scene?
 

Lancer

Well-Known Member
Nov 1, 2016
1,278
420
I think you need to actually go into the Masturbate menu.
He's talking about how sometimes after milking yourself you'll be forced to masturbate. I'm not exactly sure what the trigger is, and I've been watching for a pattern for a while. I agree with the quantity theory, but as to the exact amount I have no idea.
 

Karretch

Well-Known Member
Aug 26, 2015
2,068
304
I found this:
//Orgasm Odds
//10% per 400 mLs over 1L. So: 2L: 25%, 4L: 75%, etc
var orgasmOdds:int = 0;
if(pc.milkQ() >= 1000) orgasmOdds += (pc.milkQ() - 1000) / 40;
if(pc.isTreated() && orgasmOdds < 100) orgasmOdds = 100;
var orgasmed:Boolean = (rand(100) + 1 <= orgasmOdds);
if(pc.lust() < 33) orgasmed = false;​

So, if I'm reading this properly, it's random and calculated based upon how much milk you have.

E: Source: https://github.com/OXOIndustries/TiTS-Public/blob/master/includes/masturbation.as
Do a page search for "Hand Milk" or "milkturbation"