Page 1 of 2

REQUEST Increlution (Steam version)

Posted: Sat Nov 20, 2021 12:59 pm
by Damaskox
Game Name: Increlution
Game Engine: Unknown
Game Version: Unknown (20.11.2021)
Options Required: Maximum amount in Inventory
Steam Website:
Other info: The demo is free and might have the same database/coding/etc?

Re: REQUEST Increlution (Steam version)

Posted: Mon Nov 22, 2021 3:12 am
by RodWarrior
Also would like to request this, specially freezing health decay or lowering it.

Re: REQUEST Increlution (Steam version)

Posted: Sun Dec 05, 2021 7:49 am
by ender513
Damaskox wrote:
Sat Nov 20, 2021 12:59 pm
Game Name: Increlution
Game Engine: Unknown
Game Version: Unknown (20.11.2021)
Options Required: Maximum amount in Inventory
Steam Website:
Other info: The demo is free and might have the same database/coding/etc?
if you want health, you can hack the file, and edit the foods to give a lot more health.

steamapps - common - increlution - resources - app.
then open with notepad . exe

do a search for +5\x20health
should look like
;a0_0x32c127['health']=new Decimal(0x5);a0_0x32c127[a0_0x86f8('0x3f3')]='+5\x20health\x20when\x20eaten'

new Decimal(0x5) where 5 is the amount of health berries give you.
new Decimal(0xffff); means the berries will restore 65535 each.
so you survive much longer.

if you want to survive for a very long time, just search for new Decimal(0x14) (fish)
new Decimal(0x23) (apple), and new Decimal(0x3c) (cooked rabbit)

changing all 4 numbers to ffff means you will survive for a very very long time

Re: REQUEST Increlution (Steam version)

Posted: Fri Feb 18, 2022 3:49 pm
by dracolgold
what file in the app folder are you editing?

Re: REQUEST Increlution (Steam version)

Posted: Wed Feb 23, 2022 8:11 pm
by Zaraf
dracolgold wrote:
Fri Feb 18, 2022 3:49 pm
what file in the app folder are you editing?
gniller-min.js

Re: REQUEST Increlution (Steam version)

Posted: Fri Mar 04, 2022 7:44 am
by talamaster
Does any one have an edit that would increase inventory size or instinct gain rate?

Re: REQUEST Increlution (Steam version)

Posted: Tue Mar 15, 2022 9:19 pm
by Panslothda
I think this got patched and is no longer possible in newest version. Is there any way to free health using cheat engine?

Re: REQUEST Increlution (Steam version)

Posted: Fri Apr 01, 2022 2:15 am
by ender513
talamaster wrote:
Fri Mar 04, 2022 7:44 am
Does any one have an edit that would increase inventory size or instinct gain rate?
inventory size is a little tricky to find, since the address keeps changing with updates.

however if you do a search for
=new Decimal(0x5);
should be 1st (for the 3/22/22 update) or 2nd result.
changing the value to (0xf5) = inventory 500

(current file var a0_0x1128b4=new Decimal(0xf5);var a0_0x540f36=new Dec)

also with the 3/22 update, if you do a search for
forest
then
=new Decimal(0x2);

that is for the health multiplier from the campfire
changing the value to (0xffff) = 4000 times health multiplier

(current file a0_0x21e78f[a0_0x5ae6('0x1a6')]=new Decimal(0xff);a0_0x21e78f[a0_0x5ae6('0x5b0')]=function()

Re: REQUEST Increlution (Steam version)

Posted: Fri Apr 01, 2022 2:18 am
by ender513
Panslothda wrote:
Tue Mar 15, 2022 9:19 pm
I think this got patched and is no longer possible in newest version. Is there any way to free health using cheat engine?
yes it was patched, but if you open the file and search for "cooked"

should be able to fine "cooked eel"
then just search up for (0x5) to find berries
then edit from there same as earlier.

Re: Increlution (Steam version) Decay

Posted: Tue Apr 05, 2022 9:47 pm
by Skaviouz
I thought I would mention and post as I didn't see it mentioned in this thread yet, and it took a little bit of time for me to understand what's going on.

If you want to add a speedup cheat - [Link]
follow those installation instructions on the html file: Increlution/resources/app/electron-index.html
RodWarrior wrote:
Mon Nov 22, 2021 3:12 am
Also would like to request this, specially freezing health decay or lowering it.
talamaster wrote:
Fri Mar 04, 2022 7:44 am
Does any one have an edit that would increase inventory size or instinct gain rate?
If you want to modify the game, there are a few things you can do.
I'd recommend Notepad++, Then Plugins > Plugin Admin, and install JSTools, it's easier to find things with beautified JS (JSFormat; control - alt - m) and it's only a limited performance cost for the extra bytes in the js-min, were cheating anyways.

File to edit: Increlution/resources/app/gniller-min.js

If you want to make huts bring decay to almost 0, You could replace all occurrences of

Code: Select all

('0x497')]=new Decimal(0.5)
with

Code: Select all

('0x497')] = new Decimal(0.01)
that would make all huts OP and reduce decay significantly. I wouldn't even bother changing the 0x2 or 0x3 or 0x4 like when you go into the desert and your health decay multiplies for example. The 50x buff we just did to EVERY hut is plenty imho.

Finally, regardless of the code changing between updates, berries can be found with "['health']=new Decimal(0x5)", so you can follow what's said above with that thought in mind. You don't even need to know if it's a0_0x32c127 or a0_0x8d0d1a in the newest version (3/3/22 build).

If in future updates the code changes, this is what it could look like in this build, and you can search for maybe "['id']=0x1;" or "new Decimal(0x9c40)" to find the approx location of the decimal 0.5 to change it to 0.01 and find what the 0x497 becomes. note: 9c40 is 40k

Code: Select all

const a0_0x3d3507 = {};
a0_0x3d3507['id'] = 0x1;
a0_0x3d3507['name'] = a0_0x3301('0x11a');
a0_0x3d3507[a0_0x3301('0x1ab')] = 0x2;
a0_0x3d3507['requiredProgress'] = new Decimal(0x9c40);
a0_0x3d3507[a0_0x3301('0x3f7')] = {};
a0_0x3d3507[a0_0x3301('0x497')] = new Decimal(0.01);
a0_0x3d3507[a0_0x3301('0x442')] = function () {
    return !game[a0_0x3301('0x5c2')][0x1f]['isFinished'];
};
a0_0x3d3507[a0_0x3301('0x1c9')] = function () {
    return !![];
};
a0_0x3d3507[a0_0x3301('0x6fc')] = function () {
    game['construction'][this['id']][a0_0x3301('0xad')] = !![];
};
a0_0x3d3507[a0_0x3301('0x31e')] = a0_0x3301('0x71f');
a0_0x3d3507[a0_0x3301('0x3f7')]['0'] = {};
a0_0x3d3507[a0_0x3301('0x3f7')]['0'][a0_0x3301('0x520')] = 0x0;
a0_0x3d3507[a0_0x3301('0x3f7')]['0'][a0_0x3301('0x95')] = new Decimal(0x14);

Re: REQUEST Increlution (Steam version)

Posted: Fri Apr 29, 2022 7:39 am
by chi90504
Anyone know how to find a way to increase cart sizes? (I'd be happy with a doubling of cart sizes to go from 20 inventory to 30 or 25 to 40 depending on which route you take) also increasing silver coins would also be nice

Re: REQUEST Increlution (Steam version)

Posted: Tue May 10, 2022 4:50 pm
by Sheelin
Regarding the food healing modification:
actually the game makes you eat food only if the healing amount is fully used. It means that if your food heals more than your max life, it will never be used. Personally I found a good equilibrium in set food to heal about half your life. Sadly, when decay becomes too high, it will stop being useful again.
The only real useful cheat would be a freezing or greatly reduction of the decaying.
Setting the hut reduction to 0.01 nearly does the trick... I'll update here for relevant changes, if any.
edit: --> the change needs to be done for ALL huts. Wonder if I'll find the others. That doesn't solve the issue though, since decay keeps raising when playing, to unbearable levels.

Edit:
Found around:
the other foods can be found by searching for:

“new Decimal(0x14)” (fish)
“new Decimal(0x23)” (apple)
“new Decimal(0x3c)” (rabbit)
“new Decimal(0x50)” (Hering)
“new Decimal(0x64)” (bread)
“new Decimal(0x96)” (pie)
“new Decimal(0x12c)” (boar)
“new Decimal(0x1F4)” (crab)
“new Decimal(0x258)” (coconut)
“new Decimal(0x320)” (banana)
“new Decimal(0x5dc)” (goat)
“new Decimal(0xbb8)” (vulture)
“new Decimal(0xfa0)” (Moss)
“new Decimal(0x1388)” (eel)
“new Decimal(0x1d4c)” (cookie)
“new Decimal(0x2710)” (orange)
“new Decimal(0x30d4)” (lobster)

The first search result in a row (after the berries there is sometimes no [‘health’] in front of it)

Re: REQUEST Increlution (Steam version)

Posted: Fri May 13, 2022 8:39 pm
by veldrane66
I was able to cheat huts in the previous NG+ but when I prestiged, suddenly changing hut numbers in gniller-min.js doesn't do anything anymore. I tried in both Notepad and Notepad+. Actually it seems like the cheats don't work at all anymore. Any workaround or suggestion guys? TY

Re: REQUEST Increlution (Steam version)

Posted: Thu May 26, 2022 11:36 am
by Damaskox
ender513 wrote:
Fri Apr 01, 2022 2:15 am
talamaster wrote:
Fri Mar 04, 2022 7:44 am
Does any one have an edit that would increase inventory size or instinct gain rate?
inventory size is a little tricky to find, since the address keeps changing with updates.
I tried to look for those mentioned values in gniller-min.js but didn't find them.

The newest update was in 3.5. so these values might have changed (again).

Still looking for a way to increase my inventory.

Re: REQUEST Increlution (Steam version)

Posted: Mon May 30, 2022 8:42 am
by ajchen01
okey, I think I have found the easiest way to modify ng+ perks price.

simply: replace all "new Decimal(1.35)" to "new Decimal(0)"
and all the price will become 0 forever.
this is done by modifying an value of the price counting formula to make it fall.