Start Hack Crossfire INDO
hello mpgh, fisrt time i make a hack simple hack without feature just simple source i put.
when i inject using injector Extreme Injector v3, i use setting , ( manual map).
after inject, the game engine(xtrap) is showing to me, they said " ROOTKIT213".
anyone, can help me about this ?
Code:
bool IsModulesLoaded()
{
if (GetModuleHandleA("CShell.dll") != NULL && GetModuleHandleA("ClientFx.fxd") != NULL)
return 1;
return 0;
}
DWORD WINAPI StartEngine_1(void *lpReserved)
{
while (!IsModulesLoaded())
Sleep(200);
for(;;)
{
Sleep(1);
}
}
extern "C" __declspec(dllexport) BOOL WINAPI DllMain(HMODULE hDLL, DWORD dwReason, LPVOID lpvRe)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hDLL);
HANDLE hThreads = NULL;
HANDLE h_Thread = OpenThread(THREAD_ALL_ACCESS, NULL, GetCurrentThreadId());
if (!(hThreads = CreateThread(NULL, 0, &StartEngine_1, (LPVOID)h_Thread, 0, 0)))
{
CloseHandle(h_Thread);
return FALSE;
}
}
return true;
}