Sexual and not sexual actions are equal to 1 + your endurance divided by two and rounded up.
If you want to raise the minimum number of actions, open
files\scripts\variables.gd with Notepad++ (or the text editor of your choice) and increase the right side of these lines:
Code:
var basesexactions = 1.0
var basenonsexactions = 1.0
(I don't remember if you can change these values through the options panel)
If you want to change the formula, open
files\scripts\Mansion.gd and edit these lines:
Code:
globals.state.sexactions = ceil(globals.player.send/2.0) + variables.basesexactions
globals.state.nonsexactions = ceil(globals.player.send/2.0) + variables.basenonsexactions
For instance, if you replace
/2.0 with
*3.0, your daily actions become equal to 1 plus your endurance multiplied by three.
Finally, if you want to have unlimited actions with the same slave, open
files\scripts\dating.gd (for non sexual actions) and
files\scripts\newsexsystem.gd (for sexual actions), find the line:
Code:
person.lastinteractionday = globals.resources.day
and delete it. Alternatively, replace the right side with a zero.
Whatever you do, in order to make your changes effective, you must relaunch the game.