Just started

Posts 114 of 14 · Page 1 of 1
Just started
Heyyy i just got Visual C++ can someone please help me on starting on learning how to hank?.. i have been reading a little bit of C++ and i am still lost a bit. Can someone please help me start from scratch?
I dont know too. Lol
Quote Originally Posted by x3Kawaii View Post
I dont know too. Lol
if u dont know anything why write on his post...

oh and dont forget to get visual studio and lean to use it because for me it works great
What about learning at least the basics of C++ before considering moving on to creating a hack?
where do i go to learn that?
Quote Originally Posted by alpha3po View Post
where do i go to learn that?
school, education centres, on the internet.
I think there are some Tutorials for that here on MPGH.net but if you have no luck with that then look on some other sites that other coding for C++, just remembered there are infact some tutorials on here because there are some people with sigs that have an image about tutorials nad it has a link, I'll post back the link if I find one!
NEVER read tutorials on the internet that aren't paid for. And even then, they're iffy. People who make FREE tutorials don't get PAID so don't really care as much as one who does get paid.

Get a book on c++. Sam's teach yourself c++ is a great one. Then get a book on directx. Something by frank luna should do. And that should be good enough for making basic hacks. It won't be overnight, it'll take a LONG time before you actually know how to use what you've learned propler. But within 3-4 months I reckon (with extreme dedication) you could be making hacks.
O alrightss cool haha thanks guys. Far 3-4 months? thats pretty long haha but alrights i will try. hehe, its going to take me probably more but yeaa haha cheers all
Quote Originally Posted by alpha3po View Post
O alrightss cool haha thanks guys. Far 3-4 months? thats pretty long haha but alrights i will try. hehe, its going to take me probably more but yeaa haha cheers all
just remember the books wont show u everything. mostly about how to program, but some of my friends code some and just get addy's off people soo.. if keep in mind that not everything can be learnt from a book.
I'm a newb to C++ too, but from what I can tell, it helps to use pseudo code. With pseudo code, you can see something like this,

int main() {
int x = 3;
int y = 4;

if (x < y) {
system ("start program.exe");
}
else {
system ("start program2.exe");
}
return 0;
}
and read it as,

Ok, if 3 is less than 4 (x < y), do this (start program.exe). But if not (else), do this instead (start program2.exe).
good luck man i give u props
Code:
#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}
Learn EXACTLY how that works, and break it down for me in a reply, and you will be well on your way to learning how to hack.

Here are some resources to help you:

TheNewBoston – Free Educational Video Tutorials on Computer Programming and More! » C++
Google
http://www.cplusplus.com/doc/tutorial/
http://www.youtube.com/user/reconnetworks
http://www.youtube.com/antirtfm
http://www.amazon.com/Accelerated-C-.../dp/020170353X

http://www.amazon.com/Primer-Plus-5t...6043522&sr=1-1 (Uses some advanced words, if you're completely new to programming i wouldn't use this book)

That should get you started learning the basics :P
Quote Originally Posted by cfsharp View Post
Code:
#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}
Learn EXACTLY how that works, and break it down for me in a reply, and you will be well on your way to learning how to hack.
ROFL, I forgot all about, "Hello world!". That was the first program I did when I first got interested in C++ back in, I think, 2008.
Posts 114 of 14 · Page 1 of 1

Post a Reply

Tags for this Thread

None

Need help?