Alternative (better) way to make Radar hack
This method modifies radar check function so it always return true.
+ No need to loop it (++ optimization)
+ Works for every entity (also dropped c4)

So here is the magic:
Signature for function address:
Code:
{ 0x80, 0xB9, 0x39, 0x09 } "xxxx" in client.dll
Offset for bool check:
Override value (NOP, NOP):
Example code:
Code:
IntPtr functionAddress = client.Scan(new byte [] { 0x80, 0xB9, 0x39, 0x09 }, "xxxx");
IntPtr checkAddress = functionAddress + 0x7;
wpm(checkAddress, 0x90);
wpm(checkAddress + 0x1, 0x90);
Credits: Zaczero (me)