Can Anyone help me to BYPASS warrock PH?????
that is my only one (1) PROBLEM! can anyone teach me how?......
This is MY code!
#include <windows.h>
#include <stdio.h>
//Pointers
#define ADR_SPEED 0x00AAC3A4
#define ADR_PLAYERPOINTER 0x00D99B08
#define ADR_SERVERRPOINTER 0x00C95AC8
//End OF pointers
DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
DWORD *outgame= (DWORD*)ADR_SERVERRPOINTER;
// Hack Codes
void speedon1 ()
{
if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 200.0f;
}
}
void speedon2 ()
{
if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 300.0f;
}
}
void speedon3 ()
{
if(GetAsyncKeyState(VK_NUMPAD3) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 500.0f;
}
}
void speedoff ()
{
if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
{
*(float*)(ADR_SPEED) = 100.0f;
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
speedon1();
speedon2();
speedon3();
speedoff();
}
}
Sleep(200); //prevent for overloading the cpu
}
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0); //create the hackthread break;
}
return TRUE;
}
===
I dont know whats the problem! can anyone HELP ME???
