This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! BigDouble to Hex

Arcanee

Platinian
Hey guys, new to the world of trying to mod things myself, haven't tried hooking yet
I'm mostly using hex edit when dealing with il2cpp and having trouble with BigDouble from breakinfinity (double greater than e308), anyone ever dealt with it?
Basic int/float/double treatments doesn't seem to work
 
what seems to be the problem, as far as i have read and understand this, this can not be used in hex, you can use this in hooks as

Code:
void (*AddGoldPtr)(void* _this, BigDouble value);
void (*_AddGoldUpd)(void *Gold);
void AddGoldUpd(void *Gold) {
    if(Gold != NULL) {
        if(Sbyky.AddGold) {
            AddGoldPtr(Gold, 1e+9e15);
        }
    }
    _AddGoldUpd(Gold);
}
after putting BigDouble.cs file in the Scripts, that is what i understand, you can however try some trial & errors, by trying 9e15 instead of 7ff0 (aka double max), and going up till ffff in hex, to find your desired value
 
i experienced this same thing with SecuredDouble but most of the times it would return the desired value, what game and what methods are you trying to mod
 
you can check this out lgl mod menu template is very user friendly