Page 1 of 1

finding a value in a electron app run through Unity

Posted: Mon Mar 14, 2022 12:01 pm
by Chrisfearless
So Capplay released their mobile game "Minimal Dungeon" on PC (

This is a electron app run through unity. Electron apps as their nature store values as IEEE-754 since they are based on Javascript (v7 or v8, binary or double precision). However through the unity player there seems to be some kind of conversion happening, I can not for the love of god pinpoint a single variable and hunting for changed values is a nightmare in this constellation.

Anyone experienced with this?

Re: finding a value in a electron app run through Unity

Posted: Mon Mar 14, 2022 12:23 pm
by GreenHouse
They're all doubled 4 bytes. So if you have 20 attack, search for 40.
And also, that isn't Unity. Choose the right process, which is always the penultimate one.

Re: finding a value in a electron app run through Unity

Posted: Tue Mar 15, 2022 8:02 pm
by dahdahou
GreenHouse wrote:
Mon Mar 14, 2022 12:23 pm
They're all doubled 4 bytes. So if you have 20 attack, search for 40.
And also, that isn't Unity. Choose the right process, which is always the penultimate one.
I have tried and didn't get any result.