I known your Error. I have same Problem. But Easy to fix.
You need check MainLogin == 1 Then Create Backup. Make sure no cheat is running. All Disabled. Only BackupThread running.
Here My Detector.
You need check MainLogin == 1 Then Create Backup. Make sure no cheat is running. All Disabled. Only BackupThread running.
Here My Detector.
Code:
int g_Misc::SetAllThread(LPDIRECT3DDEVICE9 pDevice)
{
char p_CShell[] = "pShell.dll";p_CShell[0] = 'c';
unsigned long g_CShell = (unsigned long)GetModuleHandleA(p_CShell);
if(g_CShell!=NULL)
{
unsigned long IsReadyRoom = *(unsigned long*)( g_CShell + Debug_003 );
if(IsReadyRoom == 1) // Is Login Main
{
cMisc.pWeaponBack() ;
}
else
{
cMisc.WCheat() ;
}
}
return 0;
}

