anyone used rankhack?
currently im prestige3 (i used cheat engine) for more than 5 hours now and im not banned, so i think its safe.
bool isCheatEngineRunning()
{
foreach(Process p in Process.GetProcesses())
{
if(p.ProcessName.Contains("cheat")
{
return true;
}
}
return false;
}
That won't work if they rename the process.bool CheatEngineRunning()
{
foreach(Process p in Process.GetProcesses())
{
try
{
if(p.MainModule.FileVersionInfo.FileDescription == "Cheat Engine")
return true;
}
catch
{
continue;
}
}
return false;
}