Sorry but can you explain the mechanics of this? Whats makes her resist or not? Does she has certain amount of pleasure that she can resist or turns? Thanks on advance
I don't know how to code im just imitating things i see elsewhere in the files so...
[resist orgasm] is a seperate function which i added to the [pleasure stance] logic (the multiple turns part) in a "does it have this? then add it as a permanent state for this amount of time" fashion.
you can edit the [resist orgasm] function in www > js > plugins > RemtairyWillpower
in RemtairyWillpower there is a part labeled "Resist Orgasm", at the bottom of which is a literal solve for x plug and play math problem that asks for the pleasure that needs to be exceeded for her to have a this.orgasm...
mine is already edited but the line looks like this:
Game_Actor.prototype.willpowerResistOrgasmEffect = function() {
____return
1 + ((20 + this.mind * 7) / 90);
};
the part highlighted in green is the part you can easily edit.