Increlution: How to Unlock All Automations with Mod

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

Find main.js in the local game files. In the Mac version, this is at

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.

Unlock all Automations
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.

About Robins Chew

I'm Robins, who love to play the mobile games from Google Play, I will share the gift codes in this website, if you also love mobile games, come play with me. Besides, I will also play some video games relresed from Steam.

Leave a Comment