Source Code.
KAYO NA BAHALA SA ADDIES NYU
Code:
#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
#define OFS_Nfd 0x00
#define ADR_STAMINA 0x00
#define FullBright1 0x00
#define FullBright2 0x00
#define FullBright3 0x00
DWORD *ingame= (DWORD*)ADR_Playerpointer;
DWORD *outgame= (DWORD*)ADR_Serverpointer;
void unlisp()
{
*(float*)ADR_STAMINA = 1000000;
}
void glasswall()
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_GlassWall = 1;
else
{
*(int*)ADR_GlassWall = 0;
}
}
void Automatic()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
if(dwPlayerPtr != 0)
*(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
*(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
*(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
*(int*)FullBright1 = 1092779973;
*(int*)FullBright2 = 1092779973;
*(int*)FullBright3 = 1092779973;
*(float*)(dwPlayerPtr+OFS_Nfd) = -2000;
}
void SuperNoSpread()
{
if(GetKeyState(VK_DELETE))
*(double*) ADR_SNS = 0;
else
{
*(double*) ADR_SNS = 5;
}
}
void HackThread()
{
for(;; )
{
if(*ingame)
{
glasswall();
unlisp();
Automatic();
SuperNoSpread();
}
//if(*outgame)
{
}
Sleep(50);
}
}
//--------------------------End HackThread--------------------------//
//--------------------------End--------------------------//
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL,"Made By :Your Name","MESSAGE",MB_OK);
MessageBoxA(NULL,"Message","Message",MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
}
return TRUE;
}