Results 1 to 9 of 9
  1. #1
    aanthonyz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Hitler's Minivan
    Posts
    483
    Reputation
    27
    Thanks
    83
    My Mood
    Relaxed

    Pointers and Offsets

    If I find them, how do I implement them into my C++ code?
    It sounds like a stupid question but im serious I wanna learn.

    Also what is the difference between a pointer and an offset?
    "The best way to predict your future is to create it."

    Contributions I made:

    DirectX E-Books
    Hacking Tools
    Hacking into a PC

    Need Help?
    Send me a PM, or send me a email at : aanthonyz10@gmail.com

    Click My Dragon:


  2. #2
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Like so:

    Say you have a multi level pointer.

    Using this as an example:

    Code:
    DWORD Address = *(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)(*(DWORD*)(ModuleBase+Pointer)+Offset1)+Offset2)+Offset3)+Offset4)+Offset5;
    Say you wanted to modify it.

    For this example, I'll be casting it to an int:

    Code:
    *(int*)Address = 99;
    Keep me motivated for my hack development!

  3. The Following 2 Users Say Thank You to J For This Useful Post:

    Black_Zone (03-04-2011),Hell_Demon (03-02-2011)

  4. #3
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Have you ever worked with pointers without the objective of hacking? If not i advice you to. Because if you don't know what a pointer is (The most important thing in Unamanged Code IMO), you are doing it wrong.

  5. The Following User Says Thank You to 'Bruno For This Useful Post:

    Hell_Demon (03-02-2011)

  6. #4
    aanthonyz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Hitler's Minivan
    Posts
    483
    Reputation
    27
    Thanks
    83
    My Mood
    Relaxed
    Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.

    Maybe like recording over the score in a pinball or minesweeper game.
    "The best way to predict your future is to create it."

    Contributions I made:

    DirectX E-Books
    Hacking Tools
    Hacking into a PC

    Need Help?
    Send me a PM, or send me a email at : aanthonyz10@gmail.com

    Click My Dragon:


  7. #5
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by aanthonyz View Post
    Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.

    Maybe like recording over the score in a pinball or minesweeper game.
    a pointer points to somewhere in the memory. If you manage to find what place in memory has the score (for example), you point to that place, and change its content (the score).

  8. #6
    aanthonyz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Hitler's Minivan
    Posts
    483
    Reputation
    27
    Thanks
    83
    My Mood
    Relaxed
    I know that, I mean what would the actual code be?
    "The best way to predict your future is to create it."

    Contributions I made:

    DirectX E-Books
    Hacking Tools
    Hacking into a PC

    Need Help?
    Send me a PM, or send me a email at : aanthonyz10@gmail.com

    Click My Dragon:


  9. #7
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    Quote Originally Posted by aanthonyz View Post
    I know that, I mean what would the actual code be?
    You'd be able to answer this yourself if you knew how pointers work.

  10. The Following User Says Thank You to Void For This Useful Post:

    Hell_Demon (03-02-2011)

  11. #8
    aanthonyz's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Hitler's Minivan
    Posts
    483
    Reputation
    27
    Thanks
    83
    My Mood
    Relaxed
    Oh. I guess I dont know sorry for the trouble.
    "The best way to predict your future is to create it."

    Contributions I made:

    DirectX E-Books
    Hacking Tools
    Hacking into a PC

    Need Help?
    Send me a PM, or send me a email at : aanthonyz10@gmail.com

    Click My Dragon:


  12. #9
    bkbatman's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Location
    usa
    Posts
    29
    Reputation
    6
    Thanks
    0
    My Mood
    Relaxed

    here u go buddy

    [url]https://www.free
    webs
    .com/unrealapps/tutorials/cplusplus/trainer.html



    this tutorial was not made by me it was made by unreal pwner
    Last edited by bkbatman; 03-03-2011 at 02:42 AM.