Results 1 to 15 of 15
  1. #1
    Killahr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    164
    Reputation
    10
    Thanks
    43
    My Mood
    Yeehaw

    [Help] Memory Hacking

    Hi,

    I am trying to make a shophack and i think i've got the addy, but what do i have to do now?


    Thanks, David
    Press thanks when I helped













    ↓↓↓↓

  2. The Following User Says Thank You to Killahr For This Useful Post:

    alexis1992 (07-19-2010)

  3. #2
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Try nop it .
    -Rest in peace leechers-

    Your PM box is 100% full.

  4. #3
    Killahr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    164
    Reputation
    10
    Thanks
    43
    My Mood
    Yeehaw
    what shall i write in SIZE_T nSize?

    code...:

    HANDLE h;
    h=OpenProcess(PROCESS_ALL_ACCESS, FALSE, GetCurrentProcessId());
    WriteProcessMemory(h, ( void* )( 0x005A4668 ), "800000" (is this right?), what here?, NULL);
    CloseHandle(h);
    Last edited by Killahr; 07-19-2010 at 05:43 AM.
    Press thanks when I helped













    ↓↓↓↓

  5. #4
    depsento's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    2
    i need help where can i download uncdected Mhs? Or Cheat Engine?

  6. #5
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    @Topic, hmm... Let me do some research.


    Edit: https://msdn.microsof*****m/en-us/libr...74(VS.85).aspx

    Quote Originally Posted by depsento View Post
    i need help where can i download uncdected Mhs? Or Cheat Engine?
    What I know, there are no UCE or UMHS out.
    Last edited by Zoom; 07-19-2010 at 09:51 AM.
    -Rest in peace leechers-

    Your PM box is 100% full.

  7. #6
    Killahr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    164
    Reputation
    10
    Thanks
    43
    My Mood
    Yeehaw
    Quote Originally Posted by Zoom View Post
    @Topic, hmm... Let me do some research.


    Edit: WriteProcessMemory Function (Windows)
    [/SIZE][/COLOR][/FONT]
    /


    //too short
    Press thanks when I helped













    ↓↓↓↓

  8. #7
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    get the playerpointer and set the wepon pointer at playerpointer +10 or something

    /PM me if you have any questions

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

    Drake (07-19-2010)

  10. #8
    ~GodLike~'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    31
    lol!
    You dont need to NOP it!
    I have it also and it works fine!
    Your address is wrong.
    One advice:
    Data Type is Long.
    If you are good you could code in C++ it

  11. #9
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    wow how difficult =_=
    Code:
    #define Respawn_Addie 0x37xxxxx //respawn 0=no respawn 1=unlimited respawn
    #define nametag_pointer 0x37xxxxx //nametag 1=alfa 2=bravo
    #define nametag_offset 0x2C
    
    if(GetAsyncKeyState(VK_NUMPAD1)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 1;
    }
    else if(GetAsyncKeyState(VK_NUMPAD2)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 2;
    }
    
    if(GetAsyncKeyState(VK_NUMPAD3)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 0;
    }


    but this works too:
    Quote Originally Posted by Killahr View Post
    what shall i write in SIZE_T nSize?

    code...:

    /*HANDLE h;
    h=OpenProcess(PROCESS_ALL_ACCESS, FALSE, GetCurrentProcessId());*/ //alltough leave
    this out.
    WriteProcessMemory(h, ( void* )( 0x005A4668 ), "800000" (is this right?), what here?, NULL);
    CloseHandle(h);
    Last edited by Kuro Tenshi; 07-19-2010 at 11:31 PM.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

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

    Drake (07-19-2010)

  13. #10
    Killahr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    164
    Reputation
    10
    Thanks
    43
    My Mood
    Yeehaw
    Quote Originally Posted by pspiso View Post
    wow how difficult =_=
    Code:
    #define Respawn_Addie 0x37xxxxx //respawn 0=no respawn 1=unlimited respawn
    #define nametag_pointer 0x37xxxxx //nametag 1=alfa 2=bravo
    #define nametag_offset 0x2C
    
    if(GetAsyncKeyState(VK_NUMPAD1)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 1;
    }
    else if(GetAsyncKeyState(VK_NUMPAD2)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 2;
    }
    
    if(GetAsyncKeyState(VK_NUMPAD3)>0)
    {
    *(long*)(nametag_pointer+nametag_offset) = 0;
    }
    what is that?

    Quote Originally Posted by ~GodLike~ View Post
    lol!
    You dont need to NOP it!
    I have it also and it works fine!
    Your address is wrong.
    One advice:
    Data Type is Long.
    If you are good you could code in C++ it
    hehe^^
    the problem is that i am not very good in c++.

    good to know that my address is wrong... how do i find it?
    Press thanks when I helped













    ↓↓↓↓

  14. #11
    ~GodLike~'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    31
    Quote Originally Posted by Killahr View Post
    the problem is that i am not very good in c++.
    Then learn it before starting to cod hacks.

    Quote Originally Posted by Killahr View Post
    good to know that my address is wrong... how do i find it?
    Oh.
    This is really easy.
    Try to find it on your own.
    It takes your time but it took my time also, so don't expect everything from other people.

  15. #12
    Killahr's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    164
    Reputation
    10
    Thanks
    43
    My Mood
    Yeehaw
    Quote Originally Posted by ~GodLike~ View Post
    Then learn it before starting to cod hacks.



    Oh.
    This is really easy.
    Try to find it on your own.
    It takes your time but it took my time also, so don't expect everything from other people.
    I didn't ask you for the address... /

    I only wanted to know how to find it...
    Press thanks when I helped













    ↓↓↓↓

  16. #13
    Kuro Tenshi's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Where arth thou be
    Posts
    3,635
    Reputation
    70
    Thanks
    746
    My Mood
    Blah
    Quote Originally Posted by Killahr View Post
    what is that?



    hehe^^
    the problem is that i am not very good in c++.

    good to know that my address is wrong... how do i find it?
    =_= better to say im not good at C++ at all? this is basic .

    i always add this to my mhs/ce tables on mpgh.
    DigiDrawing|+ ( (Elfen Archer) )
    Link:
    https://www.mpgh.net/forum/148-showro...en-archer.html


    @ Anime Section,Otaku/weeabo (orz.) @Graphics Section, Novice DigiArtist


    neuest gift from Yura~Chan:
    https://bakyurayuu.deviantar*****m/#/d372taw
    2nd Place MOTM#9 Theme: CharMods - Combat Arms [No - Thanks] button
    come on you know that don't want to push that ordinary button

  17. #14
    ~GodLike~'s Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    31
    Quote Originally Posted by Killahr View Post
    I didn't ask you for the address... /

    I only wanted to know how to find it...
    I am not dumb!
    I answered your question correctly but you didn't understand it correctly!
    So instead of posting here go and find something out!

  18. #15
    HaX4LiFe!'s Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    1,639
    Reputation
    22
    Thanks
    1,420
    thts what i tell people also its better to learn urself instead of takin the easy option when u do it urself ull feel alot better about urself and ur coding exp

  19. The Following User Says Thank You to HaX4LiFe! For This Useful Post:

    ~GodLike~ (07-20-2010)

Similar Threads

  1. [Solved] *<I Need Help With Hacks And Xtrap>*
    By Birdy in forum CrossFire Help
    Replies: 5
    Last Post: 06-20-2012, 10:07 AM
  2. [Help] Memory hacks help :(
    By barcoder in forum WarRock Hack Source Code
    Replies: 14
    Last Post: 09-05-2011, 09:47 AM
  3. [Help Request] Help with hacks on laptop
    By dinorex66 in forum CrossFire Help
    Replies: 6
    Last Post: 06-02-2011, 05:32 PM
  4. [Help Request] help with hacks
    By gabalvesilva in forum CrossFire Help
    Replies: 10
    Last Post: 05-17-2011, 03:26 PM
  5. Working mhs MEMORY HACK need help
    By dinourx7 in forum Combat Arms Discussions
    Replies: 2
    Last Post: 12-27-2009, 11:10 PM