Programming newbie, hacking assaultcube.

Posts 14 of 4 · Page 1 of 1
Programming newbie, hacking assaultcube.
hello!
i have read a large book of programming c++, but when i look at codes like
if (c == 0)
{
ReadProcessMemory(hProcHandle, (LPCVOID)pointer, &pTemp, sizeof(pTemp), NULL);
}

pointerAddr = pTemp + Offsets[c];
ReadProcessMemory(hProcHandle, (LPCVOID)pointerAddr, &pTemp, sizeof(pTemp), NULL);
then i done understand anything, its like another language, i want to start game hacking.

I can make a calculator and some other shit out of just my head.

Can anyone add me to skype and try helping me? markus.veidahl is my name
It only seems harder than it really is.

They are simply using functions and names that make it look more complicated.

Code:
if(number != 0)
{
     Sum(&number, valueToAdd);
}
Does this look hard to you? If it does, I suggest you read your book once again.

Now I guess it doesn't look hard to you since you just read a book, yet it is the same thing than the ReadProcessMemory function.

Those are functions you don't understand, that is all. When you'll understand what it does, this snippet will look as easy as my example.

Learn about pointers, and you should be fine. Just practice a lot.
I'd suggest reading programming windows by Charles Petzold.
Posts 14 of 4 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?