bool indication()
{
float var;
var = *(float*)(*(int*)0x1D31404 +0xC);
if(var != 0)
return true;
}
void Hacks()
{
if(indication)
{
//hacks
}
}


bool indication()
{
return *(int*)0x1D31404 == 0;
}

bool IsInGame()
{
return *(int*)0x1D31404 != 0;
}
void MyThing()
{
if(IsInGame())
{
// Do crap here.
}
}