[TuT] How to make your first Nomenuhack!

11/14/2010 16:58 Warrockhaxer#1
Hi! :D
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! ;)
11/14/2010 17:12 .xD1997™#2
Nice nice ^^
Thanks for your Bemühungen :'D
11/14/2010 17:17 Warrockhaxer#3
Quote:
Originally Posted by xD1997 View Post
Nice nice ^^
Thanks for your Bemühungen :'D
i just readed your TuT... good tut
And thx! :p

This is my nomenu hack : [Only registered and activated users can see links. Click Here To Register...]

:D
11/19/2010 15:55 Inkuli#4
nice ;)
12/04/2010 16:35 Warrockhaxer#5
Quote:
Originally Posted by Inkuli View Post
nice ;)
Thx ;)
12/05/2010 12:32 Takado™#6
Quote:
Originally Posted by .xD1997™ View Post
Nice nice ^^
Thanks for your Bemühungen :'D
Very good englisch xDD

Ja gibt THX
12/05/2010 14:51 helper2#7
n1 nice gibt thx
aber XD seiner is das beste und es gibt jetzt eigentlich genug
12/05/2010 15:12 .Sasuke™#8
geil aber wie macht man dann menü hack :facepalm:???