Help! offset help / unlocking hidden options

Smiley3rd

Platinian
Oct 4, 2020
28
51
13
23
Indonesia
You could try hooking it like this
void(*old_Update)(void *instance);
void Update(void *instance) {
if(instance != NULL) {
if (*yourbool) { //if Toggle
*(bool *) ((uint64_t) instance + 0x30) = true;
}
}
old_Update(instance);
}
Then call using MSHook or HOOK when using lgl's template