ExclamationMaking super jump

Posts 1–7 of 7 · Page 1 of 1
Making super jump
Can some plz help me make a super jump hack, i have the right addresses but can someone maybe point me towards a good tut or help me out

*#define ADR_SERVERPOINTER 0x96BDE8
#define ADR_PLAYERPOINTER 0xA71030

(are these correct for the current version?)
Create a dll file, Win32 Project at C++,create a .cpp file and insert this Code
Code:
#include <windows.h>
#include <stdio.h>

//Addys//

#define Ofs_Z 0x102D8
#define Addr_Playerpointer 0xA71030
#define Addr_Serverpointer 0x96BDE8


//Defines//
DWORD *ingame= (DWORD*)Addr_Playerpointer;
DWORD *outgame= (DWORD*)Addr_Serverpointer;

//Source Codes//

void jump () //super jump
{
if(GetAsyncKeyState(VK_CONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 2000;
}
}
}

//Hacktread//

void HackThread() 
{
for(;; ) 
{
if(*ingame) //All ingame Hacks like superjump,nfd,scoop etc.//
{
jump();
}
if(*outgame)//All outgame hacks like Prmeium,supermaster etc.
{
}
}
Sleep(200); 
}

BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
ShellExecute(NULL,"open","http://Mpgh.net/",NULL,NULL,SW_SHOWNORMAL);//non modificate questo
MessageBoxA(NULL,"Hack by Taylan","Creditz",MB_OK);//
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0); 
break;
}
return TRUE;
}
Debugg it (green arrow 1x click or press F5)
If u got 0 errors, than u created scussefull a hack.


!!!!Press Thanks button if it helps you pls!!!!!
Incorrect addys
Code:
ADR_PLAYERPOINTER  0xD284E8
ADR_SERVERPOINTER  0xC24B10
OFS_Z  0x102D8
thanks for you help

do you have to create the
#include <windows.h>
#include <stdio.h>
If so what code would i write
Quote Originally Posted by johnnydicamillo View Post
thanks for you help

do you have to create the
#include <windows.h>
#include <stdio.h>
If so what code would i write
No, you don't have to create them, they are your include files, and should be in your incudes folder.
you should make it
Code:
*(float*)(dwPlayerPtr+Ofs_Z) += 750
Posts 1–7 of 7 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

Need help?