Results 1 to 10 of 10
  1. #1
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring

    Talking Ok , MOREE QUESTIONS =]

    1)if i use the Read memory (something) ' what is the outout of this function ? and how do i use it ? , in wrriting it , should i write for it what adress to read ? , couse if i do ' how i should i know what adress should i write ?
    2) how can i make a FLASH games hacks by c++ ?


    Hell_Demon: Please refrain from using tons of smilies at the end of your posts.
    Last edited by Hell_Demon; 06-23-2010 at 07:05 AM. Reason: smilies removed
    If you wanna see how to make a someone dumb press here

  2. #2
    Void's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Inline.
    Posts
    3,198
    Reputation
    205
    Thanks
    1,445
    My Mood
    Mellow
    It returns 0 if the function fails and a non zero if it succeeds.

    The function is used to read memory. Use WriteProcessMemory to write to memory.

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

    thekm1994 (06-23-2010)

  4. #3
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    Write to memory means , to change the value of the adrress right ?
    can it be use (c++) to hack any flash game ?
    If you wanna see how to make a someone dumb press here

  5. #4
    Hell_Demon's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    I love causing havoc
    Posts
    3,976
    Reputation
    343
    Thanks
    4,320
    My Mood
    Cheeky
    1. This question makes no sense at all ^^
    For reading:
    hProcess is the process handle that you get by using OpenProcess.

    lpBaseAddress is the addy you want to read from
    cast it to LPVOID: (void*)0xB4DF00D

    lpBuffer is a pointer to the buffer you want to read into.
    char mybuffer[32]; //now use &mybuffer in ReadProcessMemory.

    nSize is the number of bytes you want to read, if you use the mybuffer from above you'd fill in 32 here.

    lpNumberOfBytesRead is a pointer to an integer, just pass null for this, you don't really need it.



    For writing:
    the exact same as above, but instead of reading into the buffer you write the buffer into the memory, so make sure you give it a value ^^.
    char mybuffer[5] = "\x90\x90\x90\x90\x90";

    2. Yes, but it's 10x harder to do then with C# or VB.
    Ah we-a blaze the fyah, make it bun dem!

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

    thekm1994 (06-23-2010)

  7. #5
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    Can you give an example of it ? witj game and code ?
    If you wanna see how to make a someone dumb press here

  8. #6
    '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 thekm1994 View Post
    Can you give an example of it ? witj game and code ?
    if you have a look on recent threads/post you might find examples... or by using search
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

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

    thekm1994 (06-23-2010)

  10. #7
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    i would download the game if its need
    If you wanna see how to make a someone dumb press here

  11. #8
    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 thekm1994 View Post
    Can you give an example of it ? witj game and code ?
    Go here: https://www.mpgh.net/forum/31-c-c/149...ml#post2008173

    Good example of WriteProcessMemory.

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

    thekm1994 (06-23-2010)

  13. #9
    thekm1994's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    79
    Reputation
    8
    Thanks
    1
    My Mood
    Daring
    So , does its cnage the valuse of the adress ! (right ? i m not sure yet XD)
    If you wanna see how to make a someone dumb press here

  14. #10
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Quote Originally Posted by thekm1994 View Post
    So , does its cnage the valuse of the adress ! (right ? i m not sure yet XD)
    If you mean WriteProcessMemory, then yeah.


    Edit (more info)

    It'll write data to the memory of a certain address of a selected process, so (in Lehman's terms) it is a function that changes the data of an address.
    Last edited by Lolland; 06-23-2010 at 12:57 PM.

  15. The Following 2 Users Say Thank You to Lolland For This Useful Post:

    Hell_Demon (06-23-2010),thekm1994 (06-23-2010)

Similar Threads

  1. 2 more questions
    By Arasonic in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 5
    Last Post: 09-13-2010, 02:13 PM
  2. Hey sorry me again more questions
    By faceshed in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 02-26-2010, 02:37 AM
  3. [Question] Lvl hack+more
    By <(-_-)> in forum Call of Duty Modern Warfare 2 Help
    Replies: 8
    Last Post: 02-07-2010, 08:50 PM
  4. 1 more question!
    By DarkTranny in forum CrossFire Hacks & Cheats
    Replies: 3
    Last Post: 08-05-2009, 12:47 PM