Increlution is very close to the type of idle game that I really like: ones that reward me for getting engrossed in other tasks by accumulating progress whenever I am not paying attention to the game. In Increlution, this play style is not possible because Offline Time does not accumulate when the game pauses due reaching an automation-locked action, and the vanilla game is designed to make this happen for the majority of times that you interact with it.
Here is a mod to unlock all automations immediately, which makes the gameplay more “idle” and less “incremental”. As a side-effect, this will also reveal spoilers of the entire list of possible actions in the Automation Configuration screen.
Enable Modding
steamapps/common/Increlution/Increlution.app/Contents/Resources/app/main.js
Edit main.js and change this line:
devTools: false,
to
devTools: true,
Then (re-)launch the game, and open the Developer Tools by pressing Ctrl+Shift+I or Command+Option+I.
In the Console tab of the Developer Tools, run this script:
for (const jobType of ["jobs", "construction", "exploration"]) { for (const job of game[jobType]) { if (!job.isAutomationUnlocked) { job.isAutomationUnlocked = true; job.shouldAutomate = 0; } } }
Thanks to myhf for his excellent guide, all credits belong to his effort. if this guide helps you, please support and rate it via Steam Community. enjoy the game.