Hi!

Welcome to my TuT!
I will learn you how to make a nomenu hack with superjump and NFD!
But you need to know some basics!
First open your Visual studio 2010!
Make a new project.
Select Win32 project. Name it to Mynomenuhack! then press OK.
Click next. Then choose Dll on Application type and empty project on additional options!
Then u have 4 folders. Rightclick on source files and then Add -> new item!
Click on the C++ File(.cpp) and name it to hacks.
Now we are going to start coding!
(You need to find the addys by yourself!)
Code:
Quote:
#include <Windows.h>
#include <stdio.h>
#define ADR_PLAYERPOINTER <Addy here>
#define ADR_SERVERPOINTER <Addy here>
#define Ofs_NoFallDamage <Addy here>
#define OFS_Z <Addy here>
float posiZ;
void jump () // jump is the title
{
if(GetAsyncKeyState(VK_CONTROL) &1) // That means that the Hotkey is STGR
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0) // it check when you are in Game
{
*(float*)(dwPlayerPtr+OFS_Z) = 1500; // The hight that the player gonna jump!
}
}
}
void nfd () // nfd is the title
{
DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
if(dwPlayerPtr != 0) // it check when you are in Game
{
*(float*)(dwPlayerPtr+Ofs_NoFallDamage) = -50000;
}
}
void HackThread() //HackThread includes all your hack to your nomenu hack! All the "titles" are coming in on hackthread!
{
for (;
{
{
jump(); //Superjump!
nfd(); //No fall dmg!
}
}
BOOL WINAPI DllMain(HINSTANCE mod, DWORD DWORD_GRUND, LPVOID res)
{
switch(DWORD_GRUND)
{
case 1:
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
break;
case 2:
break;
}
return TRUE;
}
|
Now press F7 and then you are done! Now go search in Projects and find Mynomenuhack!
Open it and open the folder Debug.
There you will find your dll!
Now name an injector to same thing as the dll and the u start the injector
and then Warrock!
Now you have make a HACK!
That was all from me!
THX for reading!