@
barcoder Thanks
i have a good mentor @
Terell. <3
i cant do a freakin' function myself ,there's always errors which i was not taught how to fix.
help?
// ================
// Coded by Frolis16
// ================
// Warrock Hack Source Code Section. Coded by Shunnai.
#include <windows.h>
// Addresses
#define ADR_PLAYERPOINTER 0x009E27B0
#define ADR_SERVERPOINTER 0x009E274C
#define OFS_Z 0x00102E8
#define OFS_Y 0x00102F0
#define OFS_X 0x00102E0
#define OFS_NFD 0x00102C8
#define ADR_NoSpread 0x009E71CC
//End of addresses
/* Hotkeys snippet */
int CH_Superjump = 1;
int CH_NFD = 1;
int CH_NoSpread = 1;
//Superjump Function
void Superjump()
{
if(CH_Superjump == 1){
if(GetAsyncKeyState(VK_CONTROL) &1){
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0){
*(float*)(dwPlayerPtr+OFS_Z) = 750;}}}
}
// End of Superjump Function
// NFD Function
void NFD ()
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_NFD) = -20000;
}
}
// End Of NFD Function
// NoSpread Function
void NoSpread ()
{
;if(CH_NoSpread){if(ADR_PLAYERPOINTER!=0){*(float* )NoSpread = 0;}}
// NoSpread Function
// Too add more functions/features just paste the function here then adjust the address the the Address header
// Void and sleep method
void MPGH(void)
{{
for(;
{
Superjump();
NFD();
NoSpread();
}
Sleep(150);
}}
// Bool and thread
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)MPGH , 0, 0, 0);
break;
case 2:
break;
}
return TRUE;
}
What the heck is wrong with the no spread function?

@
barcoder @
Mike Shinoda