Playerhack Struct Common only
I know HaxcOder will copy paste This hahahahha LOL
Give credits
Press thanks
created by yuri vargas
Code:
struct Hplayer//5/7/2012
{
char unknown0[161748]; //0x0000
float fastas; //0x0000
char unknown161752[88]; //0x0000
DWORD numnum; //0x0000
char unknown161844[5580]; //0x0000
float sp100; //0x0000
float sp10; //0x0000
float sp15; //0x0000
float sp30; //0x0000
char unknown167440[16164]; //0x0000
float FlyHack; //0x0000
char unknown183608[11516]; //0x0000
float boneshot; //0x0000
char unknown195128[262172]; //0x0000
float playerspeed; //0x0000
char unknown457304[2660]; //0x0000
};Hplayer* active = (Hplayer*)9437184;
Code:
void fastas_off()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->fastas = 0;
}
}
void fastas_on()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->fastas = 0.01f;
}
}
Code:
void unlisp_off()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->sp100 = 100;
active->sp10 = 10;
active->sp15 = 15;
active->sp30 = 30;
}
}
void unlisp_on()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->sp100 = 9999;
active->sp10 = 9999;
active->sp15 = 0;
active->sp30 = 0;
}
}
Code:
void flyhack_off()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->FlyHack = 0.8000000119f;
}
}
void flyhack_on()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->FlyHack = 20.0f;
}
}
Code:
void boneshot_off()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->boneshot = 1237.0f;
}
}
void boneshot_on()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->boneshot = 1235.0f;
}
}
Code:
void speed_on()
{
if (GetAsyncKeyState(/*Set your key here*/))
{
active->playerspeed = 20.0f;
}
}
Heres the copy paste edition:
Code:
#include <windows.h>
struct Hplayer//5/7/2012
{
char unknown0[161748]; //0x0000
float fastas; //0x0000
char unknown161752[88]; //0x0000
DWORD numnum; //0x0000
char unknown161844[5580]; //0x0000
float sp100; //0x0000
float sp10; //0x0000
float sp15; //0x0000
float sp30; //0x0000
char unknown167440[16164]; //0x0000
float FlyHack; //0x0000
char unknown183608[11516]; //0x0000
float boneshot; //0x0000
char unknown195128[262172]; //0x0000
float playerspeed; //0x0000
char unknown457304[2660]; //0x0000
};Hplayer* active = (Hplayer*)9437184;
void fastas_off()
{
if (GetAsyncKeyState(VK_NUMPAD1))
{
active->fastas = 0;
}
}
void fastas_on()
{
if (GetAsyncKeyState(VK_NUMPAD2))
{
active->fastas = 0.01f;
}
}
void unlisp_off()
{
if (GetAsyncKeyState(VK_NUMPAD3))
{
active->sp100 = 100;
active->sp10 = 10;
active->sp15 = 15;
active->sp30 = 30;
}
}
void unlisp_on()
{
if (GetAsyncKeyState(VK_NUMPAD4))
{
active->sp100 = 999;
active->sp10 = 999;
active->sp15 = 0;
active->sp30 = 0;
}
}
void flyhack_off()
{
if (GetAsyncKeyState(VK_NUMPAD5))
{
active->FlyHack = 0.8000000119f;
}
}
void flyhack_on()
{
if (GetAsyncKeyState(VK_NUMPAD6))
{
active->FlyHack = 20;
}
}
void boneshot_off()
{
if (GetAsyncKeyState(VK_NUMPAD7))
{
active->boneshot = 1237;
}
}
void boneshot_on()
{
if (GetAsyncKeyState(VK_NUMPAD8))
{
active->boneshot = 1235;
}
}
void speed_on()
{
if (GetAsyncKeyState(VK_NUMPAD9))
{
active->playerspeed = 10;
}
}
void hook()
{
for (;;)
{
fastas_off();
fastas_on();
unlisp_off();
unlisp_on();
flyhack_off();
flyhack_on();
boneshot_off();
boneshot_on();
speed_on();
}
}
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
{
if(dwReason == DLL_PROCESS_ATTACH)
{
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)hook, 0, 0, 0);
}
return TRUE;
}