Warrock hack helpheres my code - it wont work in warrock , please help i see the dllmai n. i fixed that but it keeps splitting here. btw it compiled succesfully but wont work in game. my 5th slot hack works but not this. i really want to release a new hack soon #include <Windows.h> // Addies Offsets Pointers // #define ADR_PLAYERPTR 0x00D4A730 #define ADR_SERVERPTR 0x00C46960 #define OFS_Z 0x102E8 void PlayerHacks(); int SuperJump = 1; int NoFall = 1; void PlayerHacks() { DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPTR; if(dwPlayerPtr != 0){ if(GetAsyncKeyState(VK_CONTROL) &1){ if(SuperJump){ *(float*)(dwPlayerPtr+OFS_Z) = 2000.0F; } } if (NoFall) {*(float*)(dwPlayerPtr+OFS_Z) = -35000.0F;} } } void PlayerHacks(void); /// End hacks /// void hDllMain(void) { while(true){ void PlayerHacks(); Sleep(30); } } BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: DWORD dwID1 = 0; HANDLE hThread1 = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)Dllmai n, NULL, NULL,&dwID1 ); CloseHandle(hThread1); break; } return TRUE; }