sir nag gawa ako ng cheat wall lang tapos succesful un pag pasok sa ko sa warrock sa pag game na detect sya pano ko to gawin para de
ma detect ang gamit ko DEV C++ at ito ang code
#include <windows.h>
#include <stdio.h>
#define ADR_PlayerPointer 0x00AD8E18
#define ADR_ServerPointer 0x009D2D00
#define ADR_GlassWalls 0x0095CE84
DWORD *ingame= (DWORD*) ADR_PlayerPointer;
DWORD *outgame= (DWORD*)ADR_ServerPointer;
//Player Hacks
void PlayerHacks()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;
if(dwPlayerPtr != 0)
{
}
}
//-------------------------------------------------
void GlassWall()
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_GlassWall = 1;
else
{
*(int**)ADR_GlassWall = 0;
}
}
//-------------------------------------------------
void HackThread()
{
for(;; )
{
if(*ingame)
{
PlayerHacks();
GlassWall();
}
if(*outgame)
{
}
Sleep(200); //prevent for overloading the cpu
}
}
//----------------------------------------------------------
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Made By: BONJINGALFEREZ ", "", MB_OK);
MessageBoxA(NULL, "Hack Injected", "ENJOY", MB_OK);
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread, 0, 0, 0);
}
return TRUE;
}
kihuha ko lang dito sa site nyo ang code nato