Noob in coding hacks

Posts 111 of 11 · Page 1 of 1
Noob in coding hacks
Need some help here.
I learned c++ and WINapi to progam hacks and want to start progamming hacks for warrock.

Code:
#include <windows.h>


#define Addr_Speed 0x008F2F3C

void source_codes(){ // We define our 'Source Codes' in here.

if(CH_Speed == 1){
if(GetAsyncKeyState(VK_HOME) &1){
DWORD *dwPlayer1Ptr = *(DWORD*)Addr_Speed;
*(float*)(dwPlayerPtr+OFS_Z) = 2000;}}
Is this good? What do I need to add? Some tips?

Pls no flaming reactions, I am just learning how to code.
looks like shit. learn first c++ before u try to code a hack. seriously, copy and pasting does not make u a coder.
Isnt copy-past and I learned c++, but I am just asking and you just suck that you cant reply normal.
Quote Originally Posted by skulhead View Post
Need some help here.
I learned c++ and WINapi to progam hacks and want to start progamming hacks for warrock.

Code:
#include <windows.h>


#define Addr_Speed 0x008F2F3C

void source_codes(){ // We define our 'Source Codes' in here.

if(CH_Speed == 1){
if(GetAsyncKeyState(VK_HOME) &1){
DWORD *dwPlayer1Ptr = *(DWORD*)Addr_Speed;
*(float*)(dwPlayerPtr+OFS_Z) = 2000;}}
Is this good? What do I need to add? Some tips?

Pls no flaming reactions, I am just learning how to code.
You have this if(CH_Speed == 1) delete it thats for D3D menu hacks.
and also look at this *(float*)(dwPlayerPtr+OFS_Z) = 2000;}

Im not a warrock coder but you should define OFS_Z if im right
ty

/msg2short
Quote Originally Posted by skulhead View Post
ty

/msg2short
Do something like this
Code:
void jump () 
{
if(GetAsyncKeyState(VK_NUMPAD1) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Addr_Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+Ofs_Z) = 1000;
}
}
}
Code:
#define Ofs_Z 0x00102D8
#define Addr_Playerpointer 0x00BC3228
Just tested working fine and the
Working, thanks alot!!

How can I const it?
That's impossible you don't have learn C++ xD forget to define OFS_Z whereas thats your first feature xD , so really need to learn C++ if you wanna become a real coder and not lecheer like somes ...
I learned C++, but I am still learning WINapi. Srry it was stupid :\
Ok ^^ so start to learn Basic C++ and after learn ASM
Posts 111 of 11 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?