I got it!I did it by changing Cautious Stance cost to 0 inRemtairyEnergy.js
(because I never got over the fact that it used to be that way until...0.6, I think, and I felt the reasoning for the change was nonsensical).
You don't have permission to view the spoiler content. Log in or register now.
I added secretary and lady stance in combat by changing this line in remtairEnergie.js for both skills
Code:
Game_Actor.prototype.showEval_endurePleasure = function() {
//MOD// return (this.isInSexPose() || this.isInDownPose()) && !this.justOrgasmed();
return (this.isInSexPose() || this.isInDownPose() || this.isInCombatPose()) && !this.justOrgasmed();
};