Thread: Just started

Results 1 to 14 of 14
  1. #1
    alpha3po's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    4

    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?

  2. #2
    x3Kawaii's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    5
    My Mood
    Aggressive
    I dont know too. Lol

  3. #3
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    What about learning at least the basics of C++ before considering moving on to creating a hack?

  4. #4
    alpha3po's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    4
    where do i go to learn that?

  5. #5
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by alpha3po View Post
    where do i go to learn that?
    school, education centres, on the internet.

  6. #6
    Sparkie7's Avatar
    Join Date
    Jan 2011
    Gender
    female
    Location
    Netherlands
    Posts
    292
    Reputation
    10
    Thanks
    213
    My Mood
    Relaxed
    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!

  7. The Following User Says Thank You to Sparkie7 For This Useful Post:

    CO-Op (06-15-2011)

  8. #7
    VvITylerIvV's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    The streets
    Posts
    668
    Reputation
    5
    Thanks
    61
    My Mood
    In Love
    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.
    Favourite quotes:

    Code:
    I don't need easy, I just need possible. ~ Me 
    
    There are three birds on a fence. Two decide to fly away, how many are left? Three, just because you decide to do something doesn't mean you've done it. ~ Don't know who said this
    
    Do not go where the path may lead, go instead where there is no path and leave a trail. ~ Ralph Waldo Emerson
    Quote Originally Posted by VirtualSia View Post
    You both have a very weird and awkward view on Computer science.
    Computer science is about computing, which is programming.
    Definition of computing: The use or operation of computers.
    Turning on my computer = computing = programming
    LAWLFAIL

  9. The Following User Says Thank You to VvITylerIvV For This Useful Post:

    alpha3po (05-21-2011)

  10. #8
    dragonslop's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    254
    Reputation
    10
    Thanks
    25
    My Mood
    Confused
    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

  11. #9
    alpha3po's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    37
    Reputation
    10
    Thanks
    4
    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

  12. #10
    dragonslop's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    254
    Reputation
    10
    Thanks
    25
    My Mood
    Confused

    Smile

    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.

  13. #11
    McGinley's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    346
    Reputation
    6
    Thanks
    61
    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).

  14. #12
    edmondc1's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    good luck man i give u props
    Last edited by edmondc1; 05-21-2011 at 08:03 PM.

  15. #13
    cfsharp's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    196
    Reputation
    28
    Thanks
    23
    My Mood
    Cynical
    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
    https://www.cplusplus.com/doc/tutorial/
    https://www.youtube.com/user/reconnetworks
    https://www.youtube.com/antirtfm
    https://www.amazon.com/Accelerated-C-.../dp/020170353X

    https://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
    Last edited by cfsharp; 05-21-2011 at 11:58 PM.

    Programming languages i know:
    C# Advanced
    -Putting it down for now, to learn C-
    C++ Beginner
    C Beginner




  16. #14
    McGinley's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    346
    Reputation
    6
    Thanks
    61
    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.
    Last edited by McGinley; 05-24-2011 at 04:18 PM.