Results 1 to 9 of 9
  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.

  2. #2
    pimpinallovertheworld666's Avatar
    Join Date
    Jan 2009
    Gender
    female
    Posts
    972
    Reputation
    10
    Thanks
    93
    My Mood
    Fine
    Prepare for a shit storm...nothing on this site is EVER simple...

    ~Dunno, but https://www.google.com will probably be your best solution.

  3. #3
    Aqollo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    fasfasfas
    Posts
    44
    Reputation
    10
    Thanks
    3
    My Mood
    Breezy
    Quote Originally Posted by pimpinallovertheworld666 View Post
    Prepare for a shit storm...nothing on this site is EVER simple...

    ~Dunno, but Google will probably be your best solution.
    I'm trying to get answers myself. I thought I'd post here maybe someone can help. Although I don't plan on giving up.

  4. #4
    UltimateX1's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    114
    Reputation
    10
    Thanks
    10
    My Mood
    Yeehaw
    Quote Originally Posted by Aqollo View Post
    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.
    nopping is basically a CE

    you input the address

    you imput the value ( or bytes)

    and it changes them

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

    Aqollo (10-17-2010)

  6. #5
    Aqollo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    fasfasfas
    Posts
    44
    Reputation
    10
    Thanks
    3
    My Mood
    Breezy
    Quote Originally Posted by UltimateX1 View Post
    nopping is basically a CE

    you input the address

    you imput the value ( or bytes)

    and it changes them
    Thank you for the response, whats CE the acronym of?

  7. #6
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by Aqollo View Post
    Thank you for the response, whats CE the acronym of?
    Cheat Engine.

  8. The Following User Says Thank You to Synns For This Useful Post:

    Aqollo (10-17-2010)

  9. #7
    Aqollo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    fasfasfas
    Posts
    44
    Reputation
    10
    Thanks
    3
    My Mood
    Breezy
    Thank you. Does someone mind helping me with #3. I wanted to understand the logic behind it. Also #4 was a bit confusing as well.

  10. #8
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Detours are use to Hook Sumthing into sumthing else...
    Detouring is only one of many hooking methods..

  11. The Following User Says Thank You to whit For This Useful Post:

    Aqollo (10-17-2010)

  12. #9
    flashlight95's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    12-34 Poopie Street Posts: Over 9000!
    Posts
    127
    Reputation
    10
    Thanks
    15
    NOP means no operation...

    For example. If you have a recoil address, you NOP the address and you will get no recoil.

  13. The Following User Says Thank You to flashlight95 For This Useful Post:

    Aqollo (10-17-2010)

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