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

Help! god mode

power2020202020

Solid & Active Platinian
hello I edited my mod menu with god mode and a fighting game more when I activate god mode in my mod menu both 2 sides are with god mode like and no one takes damage how to edit my mod menu to put player 1 with god mode and then put only player 2 with god mode as an edit on the left side with god mode without also having the right side with god mode
 
Is there a bool field offset in the same class as the method you use for god mode called "isMine"?

If so you can hook that and do

bool isMine = *(bool *) ((uint64_t) instance + 0xOFFSET);
if(GodMode) {
if(isMine) {
GodMode = True; // or whatever code you use.
}
}