Results 1 to 9 of 9

Threaded View

  1. #1
    Aqollo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    fasfasfas
    Posts
    44
    Reputation
    10
    Thanks
    3
    My Mood
    Breezy

    [Question] Memory Hacking Questions

    I've came back to learn how to hack in Combat Arm's and I'm wondering on how a few things. Also, I'd appreciate if you did not say google, as I've looked around before I've asked these.

    1. What is "NOPPING" exactly and what is it used for(like in terms of combat arms). I've seen method's using memcopy and virtual protect using these.
    2. What are "Detors" and what can they be used for if they can in combat arms?
    3. I have this nopping method here, I BELIEVE it is just a function type definition. I did not make this method, but forgot who'm made it.

    Code:
    bool Memoria( void * pDest, char * szPatch, size_t sSize ) //Nopping Method
    {
        DWORD dwOrgProtect = NULL;
        if ( !VirtualProtect ( pDest, sSize, PAGE_EXECUTE_READWRITE, &dwOrgProtect ))
            return FALSE;
    
        memcpy( pDest, szPatch, sSize );
        VirtualProtect( pDest, sSize, dwOrgProtect, NULL );
        return TRUE;
    }
    I'm wondering what it accautly does. Noting big a simple definition will do.

    4. What are enemy and player pointers for. Do they just point ot the character at all times and remain static or something? Or how do they work.

    This will help me alot if someone can answer these questions.
    Last edited by Aqollo; 10-17-2010 at 05:51 PM.

Similar Threads

  1. [Help] Few questions about memory hacks
    By D1kiy in forum C++/C Programming
    Replies: 13
    Last Post: 06-14-2011, 03:32 AM
  2. My little newb question about Memory hacking[SOLVED]
    By 'Bruno in forum C++/C Programming
    Replies: 16
    Last Post: 06-20-2010, 02:01 AM
  3. where can i find memory hacking software?
    By headsup in forum General Hacking
    Replies: 4
    Last Post: 06-22-2009, 09:57 AM
  4. Memory Hacking (the ones that works/doesn't work)
    By Kuro Tenshi in forum Combat Arms Europe Hacks
    Replies: 2
    Last Post: 04-12-2009, 02:36 AM
  5. Memory Hacking Software (MHS)
    By ElmoCA in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 02-04-2009, 05:56 PM