PAturo :-((

Posts 15 of 5 · Page 1 of 1
PAturo :-((
Pwede po paturo po kung panu gumawa ng ultimate hack tulad ng jumper dig tagos ang bala at kung anu anu pa

waller lang kasi ang marunung ako gumawa ng cheat eh waller lang kaya kong gawin


paki bigay po sakin yung method tulad nitu>>>
#include <stdio.h>
#include <windows.h>
#define Glasswalls 0x0093ABC8
void Glasswalls();
{
if(GetKeyState(VK_MBUTTON))
*(int*)ADR_Glasswall = 1;
go to WarRock Source Code Section...
#include <windows.h>

#define ADR_Glasswalls 0x0095B01C
#define ADR_SNS 0x007F7510
#define OFS_NoRecoil1 0x00000C444
#define OFS_NoRecoil2 0x00000C44C
#define OFS_NoRecoil3 0x00000C448
#define ADR_UnliStamina1 0x007F5068 //10.0
#define ADR_UnliStamina2 0x007F5064 //100.0
#define ADR_UnliStamina3 0x007F506C //15.0
#define ADR_UnliStamina4 0x007F5074 //20.0
#define ADR_UnliStamina5 0x007F5070 //30.0
#define ADR_UnliStamina6 0x007F507C //70.0
#define OFS_NFD 0x00102E8
#define ADR_FastAmmo 0x00958670
#define ADR_FastRepair 0x00958678
#define ADR_FastHealth 0x0095867C
#define ADR_FastFlag 0x00958688
DWORD *ingame= (DWORD*)0xAD7368;
void Hacks()
{
if(GetKeyState(VK_MBUTTON))
{
*(int*)(ADR_Glasswalls) = 1;
}else{
*(int*)(ADR_Glasswalls) = 0;
}
}

void sns()
{
*(double*)ADR_SNS = 0;
}

void NoRecoil()
{
DWORD dwPlayerPtr = *(DWORD*)0xAD7368;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr + OFS_NoRecoil1) = 0;
*(float*)(dwPlayerPtr + OFS_NoRecoil2) = 0;
*(float*)(dwPlayerPtr + OFS_NoRecoil3) = 0;
}
}
void GotMorphine()
{
*(float*)ADR_UnliStamina1 = 999999;
}

void NFD()
{
DWORD dwPlayerPtr = *(DWORD*)0xAD7368;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_NFD) = -10000;
}
}
void fastall()
{
*(float*)ADR_FastAmmo = 5000000;
*(float*)ADR_FastHealth = 5000000;
*(float*)ADR_FastRepair = 5000000;
*(float*)ADR_FastFlag = 5000000;
}

void Loop()
{
for(;; )
{
if(*ingame)
{
Hacks();
sns();
NoRecoil();
GotMorphine();
NFD();
fastall();
}
Sleep(200);
}
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if (dwReason==DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Made by:Bonjing", "MPGH Bonjing", MB_OK);
MessageBoxA(NULL, "cheat na", "GOooo ", MB_OK);
CreateThread(0, 0,(LPTHREAD_START_ROUTINE)Loop, 0, 0, 0);
}
return TRUE;
}
CORRECTION.. You don't have a PlayerPointer & ServerPointer..


#include <windows.h>

#define ADR_Glasswalls 0x0095B01C
#define ADR_SNS 0x007F7510
#define OFS_NoRecoil1 0x00000C444
#define OFS_NoRecoil2 0x00000C44C
#define OFS_NoRecoil3 0x00000C448
#define ADR_UnliStamina1 0x007F5068 //10.0
#define ADR_UnliStamina2 0x007F5064 //100.0
#define ADR_UnliStamina3 0x007F506C //15.0
#define ADR_UnliStamina4 0x007F5074 //20.0
#define ADR_UnliStamina5 0x007F5070 //30.0
#define ADR_UnliStamina6 0x007F507C //70.0
#define OFS_NFD 0x00102E8
#define ADR_FastAmmo 0x00958670
#define ADR_FastRepair 0x00958678
#define ADR_FastHealth 0x0095867C
#define ADR_FastFlag 0x00958688
DWORD *ingame= (DWORD*)0xAD7368;
void Hacks()
{
if(GetKeyState(VK_MBUTTON))
{
*(int*)(ADR_Glasswalls) = 1;
}else{
*(int*)(ADR_Glasswalls) = 0;
}
}

void sns()
{
*(double*)ADR_SNS = 0;
}

void NoRecoil()
{
DWORD dwPlayerPtr = *(DWORD*)0xAD7368;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr + OFS_NoRecoil1) = 0;
*(float*)(dwPlayerPtr + OFS_NoRecoil2) = 0;
*(float*)(dwPlayerPtr + OFS_NoRecoil3) = 0;
}
}
void GotMorphine()
{
*(float*)ADR_UnliStamina1 = 999999;
}

void NFD()
{
DWORD dwPlayerPtr = *(DWORD*)0xAD7368;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_NFD) = -10000;
}
}
void fastall()
{
*(float*)ADR_FastAmmo = 5000000;
*(float*)ADR_FastHealth = 5000000;
*(float*)ADR_FastRepair = 5000000;
*(float*)ADR_FastFlag = 5000000;
}

void Loop()
{
for(;; )
{
if(*ingame)
{
Hacks();
sns();
NoRecoil();
GotMorphine();
NFD();
fastall();
}
Sleep(200);
}
}

BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if (dwReason==DLL_PROCESS_ATTACH)
{
MessageBoxA(NULL, "Made by:Bonjing", "MPGH Bonjing", MB_OK);
MessageBoxA(NULL, "cheat na", "GOooo ", MB_OK);
CreateThread(0, 0,(LPTHREAD_START_ROUTINE)Loop, 0, 0, 0);
}
return TRUE;
}
void aksdasdadasd {
ajsdasdas()
sdfsdf()
}
Posts 15 of 5 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?