Can anyone give me a construc and source of Zopk just give me the construck and the source not the addys and tell me what is need to work the zopk
like
#include <windows.h>
#include <stdio.h>
#define ADR_Playerpointer 0x00
#define ADR_Serverpointer 0x00
#define ADR_GlassWall 0x00
#define ADR_SNS 0x00
#define OFS_NoRecoil1 0x00
#define OFS_NoRecoil2 0x00
#define OFS_NoRecoil3 0x00
DWORD *ingame= (DWORD*)ADR_Playerpointer;
DWORD *outgame= (DWORD*)ADR_Serverpointer;
void glasswall()
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_GlassWall = 1;
else
{
*(int*)ADR_GlassWall = 0;
}
}
void Auto()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
if(dwPlayerPtr != 0)
*(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
*(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
*(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
}
void SNS()
{
*(double*)ADR_SNS = 0;
}
void HAck()
{
for(;; )
{
if(*ingame)
{
glasswall();
Auto();
SNS();
}
//if(*outgame)
{
}
Sleep(100);
}
}
//private method
BOOL WINAPI DllMain(HINSTANCE mod, DWORD status, LPVOID res)
{
if (status == DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Made and constructed by Darkshadows", "Done", MB_OK);
MessageBoxA(NULL, "Virus Detected > Trojan < ", "Done", MB_OK);
MessageBoxA(NULL, "Close This Or It will make youre pc not working ", "Done", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HAck , 0, 0, 0);
}
return TRUE;
}
thanks