Hi
I am looking for the flag LUA_IsSwimming and need some help.
reversed with IDA:
Code:test dword ptr [eax+0B00h], 200000h jz short loc_460159
So in C#:
Code:public bool IsSwimming { get { return (Memory.Read<uint>(ObjectPointer + 0xB00)) & 0x200000) != 0; } }
Now i get Ingame this Value for:
not Swimming
(ObjectPointer + 0xB00) = x:
(342703568 + 0xB00) = 202179840
Swimming
(ObjectPointer + 0xB00) = x:
(342703568 + 0xB00) = 204276992
my question is how does it check with 0x200000 ?
2097152