int Invisible
static bool InviciblePatch;
if (Invisible)
{
if (!InviciblePatch)
{
*(long*)(ServerPOINTERx+OFS_INVISIBLE) = 2;
InviciblePatch = true;
}
}
else
{
if (InviciblePatch)
{
*(long*)(ServerPOINTERx+OFS_INVISIBLE) = 2;
InviciblePatch = false;
}
}
int Invisible
static bool InviciblePatch;
if (Invisible==1)
{
if (!InviciblePatch)
{
*(long*)(ServerPOINTERx+OFS_INVISIBLE) -= 2;//you are invisible and you can kill
InviciblePatch = true;
}
}
else
{
if (InviciblePatch)
{
*(long*)(ServerPOINTERx+OFS_INVISIBLE) += 2;//you are not invisible
InviciblePatch = false;
}
}