Hey guys i still have this stupid problem that i don't yet know how to fix.
Ive tried looking around Google, asking coders but no one could help, so here is my problem:
I currently cannot get any of my address hacks to work. I know this sounds like a noob question. I have tried multiple ways to fix this for example
1.)Game status - i used
Code:
#define GameStatus 0x37825D44
2.)Then i tried using isingame functions created by kotenopt but that didn't work ether.(I was told this function doesn't work anymore)
Code:
typedef bool (*IsConnected_t)(void);
#define ltclient 0x37817E30
bool IsIngame()
{
DWORD* LTBase = (DWORD*)ltclient;
IsConnected_t pConnected = *(IsConnected_t*)(*LTBase + 0x8C);
return pConnected();
}
Here is the example code i tried to get Super bullets to work
Code:
if(CH_SuperBullets && IsIngame())
{
Mem((LPVOID)SuperBullets, "\x90\x90\x90", 3);
}else{
Mem((LPVOID)SuperBullets, "\x0F\x94\xC0", 3);}
Thanks if you can help + Rep if it works