Welcome to the UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats.
You have to register before you can post and see and access any of the advanced forum features, please click the register link to proceed to the registration form. To start viewing threads or posts, select a forum that you want to visit from the selection below.
C and C++ hacking programming reversing
You are Unregistered, please register to gain Full access.
I got it to inject just fine, I would like to learn how to make a in game pop up menu to activate the cheats.... any links? I can learn fast from others source's even if they are detected, old or not. I just want to learn. thanks again man for posting your source code it helped me get my foot in the door to possibly make hacks someday
You are looking for offsets. There are pentiful tutorials on the forums on how to get them, as well as an impressive list stickied in the forum.
__________________
"Those who seek revenge must dig two graves, one for his enemy and another for himself."
On the internet I will - in no shape or form - take personal offence to peoples comments, idea's or views, I assume the people who I reply to won't either.
Thanks for the thorough tutorial to guide beginners like me. I've done basic programming with C++ (console stuff, not win32) and a few other languages before but never anything with game hacking. I understood everything except the part with the WriteProcessMemory lines as well as
Do you mind explaining briefly what these bytes do and why them being written
to the memory would make xhair on? Thanks!
In fact this tutorial is good for a short feeling of success: copy/paste/compile/inject/play a little, but nothing more. It is just like the topic says "Creating your first C++ dll hack".
Understanding the WriteProcessMemory part, especially the bytes which you are writing to the game memory is much more difficult. A beginner can hardly understand this. You need much more explanations.
You should look for some other tutorials. I saw some nice tutorials which cover all parts. Finding offsets in a game and writing a hack.
This is the offset where the OP Code StandingOFF is going to be written.
__________________
"Those who seek revenge must dig two graves, one for his enemy and another for himself."
On the internet I will - in no shape or form - take personal offence to peoples comments, idea's or views, I assume the people who I reply to won't either.
Awesome tutorial, helped me alot. But I've got a question.
What is
Code:
if (GetAsyncKeyState(VK_F1)&0x80000)
good for?
GetAsyncKeyState(Determines whether a key is up or down at the time the function is called, and whether the key was pressed after a previous call to GetAsyncKeyState.)
&H8000 is known as a bit mask. Here, it is used to determine the high order
bit for keystate (using AND operator) which was set by GetAsyncKeyState Api
function.