Solved How to mod double values? (il2cpp.so games)

Status
Not open for further replies.

Asriel423

Platinian
Hello fellow reverse engineering nerds / enjoyer, title says it almost all.

Basically, I want to start with games already modded by PMT, then create my own mod.

The game I'm currently trying to mod is Grow Castle on aarch-64 (ARM64).

Thanks in advance!

By the way I have another question: What is a free alternative of IDA Pro, as arm architecture is not in demo. (Asking this one for native apps)
 
Last edited:

Hey,
Due to the high density of abandoned unsolved questions, I would like to ask wether you still need any help with your problem. If you still need help, kindly reply to this thread (within 1 month) stating so. If not, please change the thread prefix to solved as confirmation.
Otherwise, this thread will get closed & the prefix will be changed.

You're of course always allowed to create a new thread should you still have problems and got your thread already closed.
We do this to cleanup this section a bit and to keep an overview.
 
Hey,
Due to the high density of abandoned unsolved questions, I would like to ask wether you still need any help with your problem. If you still need help, kindly reply to this thread (within 1 month) stating so. If not, please change the thread prefix to solved as confirmation.
Otherwise, this thread will get closed & the prefix will be changed.

You're of course always allowed to create a new thread should you still have problems and got your thread already closed.
We do this to cleanup this section a bit and to keep an overview.
Ok! Will mark as "Solved!" as I don't think I need anymore help!

Thanks!

Edit: NVM don't know how to do it.
 
double (*old_yourfunctionname)(void *instance)
double yourfunctionname(void *instance)
if (instance != NULL)
{
return yourvalue;
}
return old_yourfunctionname(instance);
}

dont forget to call your hooks

have a nice day :pepe023:
 
Status
Not open for further replies.
Back
Top Bottom