Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Strive for Power

Fantasy Slave Management/RPG Erotic Game · By Strive4Power

How to change # of interactions a day?

A topic by pumpkinrider created 18 days ago Views: 124 Replies: 1
Viewing posts 1 to 2

So I was reading the threads on here about changing some things in a saved file. it doesn't look too hard for some things like bed space and mansion space beds. I got that worked out reading this.

But how do I change the # of interactions my main character can do with followers per day? And is it possible to set that to be based on level? or only a flat amount? Eventually I wish it would go up like +1 every x levels for both meets and intimacy both. And I want to change both of those. 

Mods generally don't touch the number of beds and the Patreon Supporters code provides an unlock on the number of beds.


The number of Meet and Sex interactions per day is determined by the main character's Endurance. You get +1 interactions for every odd(1,3,5,7) point of Endurance.

The Constants mod can be used to easily and safely increase the base amount of daily interactions.

If you want any other scaling, then you would need to edit the code in ".../files/scripts/Mansion.gd":

    globals.state.sexactions = ceil(globals.player.send/2.0) + variables.basesexactions
    globals.state.nonsexactions = ceil(globals.player.send/2.0) + variables.basenonsexactions
Simply change the text, save the file, and run the game to use your changes. If you mess up and the game crashes, then you can always copy the file in the Backup folder over the file you edited. Note: if you install any mods it will automatically reset all game files to use the Backup folder, which will erase all edits to game files.