Help! god mode

power2020202020

Solid & Active Platinian
Original poster
Nov 3, 2022
58
15
8
34
brazil
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
 

libModz

Awesome Active Platinian
Jun 2, 2022
168
29
28
UK
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.
}
}