Page 2 of 2 FirstFirst 12
Results 16 to 24 of 24
  1. #16
    Astral Witch's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    106
    Reputation
    13
    Thanks
    30
    I don't believe you've been studying C++ for a year, if you have, you probably skipped a lot of tutorials and skimmed through any tutorial you've gone through without putting anything you've learned to practice.

    Reason for that^: If you've gone passed the basics and currently reading about DLLs, you would understand basic use of pointers, which is all you really need for memory hacking. If you're reading a book on DLLs, the first thing you should probably know is that any executable that loads a module gives the module direct access to any and all modules in the executable.

    So what you have now is, pointers + direct memory access. You figure out the rest.

  2. #17
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    Quote Originally Posted by Astral Witch View Post
    I don't believe you've been studying C++ for a year, if you have, you probably skipped a lot of tutorials and skimmed through any tutorial you've gone through without putting anything you've learned to practice.

    Reason for that^: If you've gone passed the basics and currently reading about DLLs, you would understand basic use of pointers, which is all you really need for memory hacking. If you're reading a book on DLLs, the first thing you should probably know is that any executable that loads a module gives the module direct access to any and all modules in the executable.

    So what you have now is, pointers + direct memory access. You figure out the rest.
    OP dont even know what a pointer is..
    Let alone how to use them...

  3. #18
    Astral Witch's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    106
    Reputation
    13
    Thanks
    30
    Quote Originally Posted by whit+ View Post
    OP dont even know what a pointer is..
    Let alone how to use them...
    Don't mind that, I'm just proving a point.

  4. #19
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    Quote Originally Posted by Astral Witch View Post
    Don't mind that, I'm just proving a point.
    Just dont waste your Breathe on this section..
    Trust me i respect you alot actually You would be proving pionts everyday..

  5. #20
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy

  6. The Following User Says Thank You to scimmyboy For This Useful Post:

    [MPGH]AVGN (02-01-2011)

  7. #21
    AVGN's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Kekistan
    Posts
    15,566
    Reputation
    1817
    Thanks
    6,678
    MOVED TO DISCUSSION




  8. #22
    Chocolate[Coder]'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    3
    My Mood
    Yeehaw
    Then how would one make a menu hack any source codes because I have been programming .exe's for like ever (1 year) and I think i'm ready for at least menu's because I want to support the MPGH.net forum and user with my potential knowledge and you guys will have to teach me if you think I'm inexperienced.

    int main()
    {
    int x = 11;
    int* pointer = &x;
    cout << "X = " << x << endl;
    cout << "X is stored in " << pointer;

    return 0;
    }
    Last edited by Chocolate[Coder]; 02-02-2011 at 10:15 AM.

  9. #23
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by whit+ View Post
    C++ for Dummies isa no go..

    I recommend C++ Premier Plus
    That is what I read. Great book if you are willing to read 1000+ pages.
    Edit-
    I thought it said primer not premier :P



    Put this image in your signature if you support HTML5 development!

  10. #24
    whit+'s Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    264
    Reputation
    10
    Thanks
    37
    My Mood
    Breezy
    Quote Originally Posted by _Fk127_ View Post
    I thought it said primer not premier :P
    Ye..
    My spelling is worse than Topblast..

Page 2 of 2 FirstFirst 12