QuestionBeginning to Create Hacks Using C++

Posts 14 of 4 · Page 1 of 1
Beginning to Create Hacks Using C++
Hello! I'm quite new to the forum, So I hope I won't be a problem to any of you ;P

But I had a pretty big question, which I'm sure has been asked hundreds of times.

How do I create hacks using C++?

Now, You must know that I am not a C++ Newbie, I know to code and have been doing it for very long.

Currently, I have created a hacking tool for a (not very well known) online game. PROBLEM IS, I have to use Cheat Engine to find each address every.time.I.relog into the game.
That's right! I'm using ReadProcessMemory and WriteProcessMemory.

Seeing as I cannot find another way, I have tried learning to 'Packet Send,' Which I dearly failed doing. I keep my hopes up to still try to learn Packet Sending or even how that works.

If anyone has ANY references on how to even begin to make some great hacking tools, that'd be great.
Finding cheat engine addresses each and every single time I log in is really not doing me any good.

Thanks!
So I found something interesting.

I used Cheat Engine to find the Base address.
I found my address I use for my hacks, and did the whole "Find out what accesses this address" and a bunch of different stuff to find my BASE.
In which case I also found my POINTER.

The base address is 0x0008D7BC and the pointer is 0x10.

Doing some research on how to put this into a C++ program with WriteProcessMemory, I came to the conclusion to do:

DWORD dwAddy;
ReadProcessMemory( hProc, (PVOID)0x0008D7BC, &dwAddy, 4, 0 );
WriteProcessMemory( hProc, (PVOID)( dwAddy + 0x10 ), &change_player_y, 4, 0 );

Sadly, this doesn't work.
What must I be doing wrong and how can I fix this?
I'm trying to make it so my current hacks will work every time I log in; This way I don't need to use Cheat Engine every single time I open my application.
What am I doing wrong?
You must keep learning, try different methods in order to find the right method.
Can you point me into this method?
I've been trying. But it doesn't work out as I plan.

I have already created my hack, But I have to re-find the address EVERY time I relog (Already said this ^.^)
And I'd like it to find the address automatically instead of me having to.
I know this is possible; But how is it done?
Posts 14 of 4 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?