Go Back   UnKnoWnCheaTs - Multiplayer Game Hacking and Cheats

  • Finding and Using the CConsoleInput Pointer Finding and Using the CConsoleInput Pointer
    sponsored advertisements
    Reply
     
    Thread Tools

    Finding and Using the CConsoleInput Pointer
    Old 6th November 2009, 02:13 PM   #1
    Freaky123
    UC Contributor

    Freaky123's Avatar

    Join Date: Sep 2009
    Location: Netherlands
    Posts: 728
    Reputation: 1806
    Rep Power: 364
    Freaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all die
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Finding and Using the CConsoleInput Pointer

    Finding and Using the CConsoleInput Pointer

    Step 1: Finding the CConsoleInput pointer

    If you use OllyDBG:
    1. Start OllyDBG
    2. Start the game and don't choose a character.
    3. Now attach OllyDBG to BFHeroes.exe.
    4. Go to the BFHeroes module.
    5. Press right click somewhere on the asm code section and search for a referenced text string.
    6. Type: "easy-bfh-dev-trunk" (without the quotes). There are multiple results but they are like 10 lines away from each other.
    7. Then go to that address...

      At that address, you will see the following:
      Code:
      0040C6D7   EB 06            JMP SHORT BFHeroes.0040C6DF
      0040C6D9   891D 3023AA00    MOV DWORD PTR DS:[AA2330],EBX
      0040C6DF   53               PUSH EBX
      0040C6E0   6A 64            PUSH 64
      0040C6E2   8D4E 28          LEA ECX,DWORD PTR DS:[ESI+28]
      0040C6E5   8935 CC94A200    MOV DWORD PTR DS:[A294CC],ESI  <----- This DS:[??????] is the address
      0040C6EB   E8 10EBFFFF      CALL BFHeroes.0040B200
      0040C6F0   8D96 44010000    LEA EDX,DWORD PTR DS:[ESI+144]
      0040C6F6   891D 5829B500    MOV DWORD PTR DS:[B52958],EBX
      0040C6FC   52               PUSH EDX
      0040C6FD   899E 08010000    MOV DWORD PTR DS:[ESI+108],EBX
      0040C703   899E 0C010000    MOV DWORD PTR DS:[ESI+10C],EBX
      0040C709   FF15 90459100    CALL DWORD PTR DS:[<&MSVCR71.time>]      ; MSVCR71.time
      0040C70F   83C4 04          ADD ESP,4
      0040C712   68 4C5B9100      PUSH BFHeroes.00915B4C                   ; ASCII "easy-bfh-dev-trunk"
      0040C717   8D4C24 10        LEA ECX,DWORD PTR SS:[ESP+10]
      the other string is more down here...
      Look at the comments in this code for the right address.

    If you use IDA:
    1. Start IDA.
    2. Load the BFHeroes.exe process into IDA and wait until it is finished loading.
    3. In the strings window, search for "easy-bfh-dev-trunk" (without the quotes).
    4. Then, double click that string and follow the reference to where it is used (there are multiple but they are like 10 lines away from each other)
    5. You will see the following:
      Code:
      .text:0040C6DF loc_40C6DF:                             ; CODE XREF: sub_40C480+257j
      .text:0040C6DF                 push    ebx
      .text:0040C6E0                 push    64h
      .text:0040C6E2                 lea     ecx, [esi+28h]
      .text:0040C6E5                 mov     dword_A294CC, esi <----- dword_?????? is the address
      .text:0040C6EB                 call    sub_40B200
      .text:0040C6F0                 lea     edx, [esi+144h]
      .text:0040C6F6                 mov     dword_B52958, ebx
      .text:0040C6FC                 push    edx             ; time_t *
      .text:0040C6FD                 mov     [esi+108h], ebx
      .text:0040C703                 mov     [esi+10Ch], ebx
      .text:0040C709                 call    ds:time
      .text:0040C70F                 add     esp, 4
      .text:0040C712                 push    offset aEasyBfhDevTrun ; "easy-bfh-dev-trunk"
      .text:0040C717                 lea     ecx, [esp+24h+var_14]
      the other string is more down here...
      Look at the comments in this code for the right address.

    Step 2: Now, to use it in your code (Credits to GetModuleHandle)
    Code:
    //Classes
    class CMainConsole
    {
    public:
        virtual void Function0();
        BYTE m_bOpen; //0004
    };
    MainConsole = (CMainConsole*) ClassManager->GetClassByName( &string( "MainConsole" ) );
    
    class CUnknown
    {
    public:
        bool ProcessInputs;
    };
    
    class CConsoleInput
    {
    public:
                    char unknown0[20];
        CUnknown* Console; //0014
    };
    CConsoleInput** ConsoleInput = (CConsoleInput**) 0xA294CC; //Here the address from previous
    
    
    //To open it
    if ( GetAsyncKeyState( VK_NUMPAD1 ) & 1)
    {
        if ( MainConsole->m_bOpen ) 
        {
            MainConsole->m_bOpen = false; 
            (*ConsoleInput)->Console->ProcessInputs = false; 
        } else {
            MainConsole->m_bOpen = true;
            (*ConsoleInput)->Console->ProcessInputs = true;
        }
    }
    //Credits GetModuleHandle
    Credits:
    - Freaky123 for finding new pointer and creating the tutorial.
    - smoochy for testing and help.
    - patrick451 for giving a old version of BFHeroes.exe.
    - GetModuleHandle for the classes and the script.

    Last edited by Freaky123; 6th November 2009 at 02:17 PM.
    Freaky123 is offline
    Reply With Quote

    Old 6th November 2009, 02:24 PM   #2
    Winslow
    Retired Administrator

    Winslow's Avatar

    Join Date: Nov 2004
    Posts: 4,892
    Reputation: 101014
    Rep Power: 623
    Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!
    Points: 214,129, Level: 59
    Points: 214,129, Level: 59 Points: 214,129, Level: 59 Points: 214,129, Level: 59
    Level up: 14%, 279,871 Points needed
    Level up: 14% Level up: 14% Level up: 14%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Excellent job Freaky123, this will definitely be very helpful to many. Added to the Battlefield Heroes Threads list. Thanks for posting, +rep.

    Last edited by Winslow; 6th November 2009 at 09:40 PM.
    Winslow is offline
    Reply With Quote

    Old 6th November 2009, 02:41 PM   #3
    SEGnosis
    Hacked North Korea

    SEGnosis's Avatar

    Join Date: Mar 2009
    Posts: 2,838
    Reputation: 25709
    Rep Power: 422
    SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Points: 90,129, Level: 43
    Points: 90,129, Level: 43 Points: 90,129, Level: 43 Points: 90,129, Level: 43
    Level up: 68%, 1,471 Points needed
    Level up: 68% Level up: 68% Level up: 68%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Good shiz ^_^
    __________________
    SEGnosis is offline
    Reply With Quote

    Old 6th November 2009, 04:14 PM   #4
    learn_more
    Retired Administrator

    learn_more's Avatar

    Join Date: Sep 2006
    Posts: 14,760
    Reputation: 162909
    Rep Power: 738
    learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!learn_more has a huge epeen!
    Recognitions Members who have contributed financial support towards UnKnoWnCheaTs. Donator (48)
    Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Awarded to members who have donated 10 times or more. Gratuity (4)
    Points: 255,107, Level: 59
    Points: 255,107, Level: 59 Points: 255,107, Level: 59 Points: 255,107, Level: 59
    Level up: 26%, 238,893 Points needed
    Level up: 26% Level up: 26% Level up: 26%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Award-Showcase Finding and Using the CConsoleInput Pointer
    nice, thanks for writing this.

    have some green bubbles
    __________________
    learn_more is offline
    Reply With Quote

    Old 6th November 2009, 07:16 PM   #5
    Kiwinz
    Hacked North Korea

    Kiwinz's Avatar

    Join Date: Jan 2008
    Posts: 2,575
    Reputation: 13365
    Rep Power: 435
    Kiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server spaceKiwinz 's rep takes up 1 gig of server space
    Recognitions Members who have contributed financial support towards UnKnoWnCheaTs. Donator (2)
    Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Points: 34,539, Level: 28
    Points: 34,539, Level: 28 Points: 34,539, Level: 28 Points: 34,539, Level: 28
    Level up: 27%, 1,761 Points needed
    Level up: 27% Level up: 27% Level up: 27%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Excellent work, everything is well documented
    Have some Rep for your share .
    Kiwinz is offline
    Reply With Quote

    Old 6th November 2009, 09:35 PM   #6
    smoochy
    A Forum Hero

    smoochy's Avatar

    Join Date: Jan 2008
    Posts: 1,401
    Reputation: 12470
    Rep Power: 422
    smoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server space
    well done

    +rep when i spread some more around!
    smoochy is offline
    Reply With Quote

    Old 6th November 2009, 10:01 PM   #7
    Roverturbo
    Finding and Using the CConsoleInput Pointer

    Roverturbo's Avatar

    Join Date: Feb 2005
    Posts: 7,223
    Reputation: 135907
    Rep Power: 675
    Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!Roverturbo has a huge epeen!
    Recognitions This certification is awarded to forum staff members that are educated in the fields of reverse engineering and file analysis. All forum staff members with this certification have successfully gone through the process of becoming certified, which includes an individual assessment by upper staff, and the requirement of passing an internal file analysis examination. Anyone with a File Analysis certification is trusted by upper staff to be able to safely and competently approve files within UnKnoWnCheaTs, and only forum staff members that are certified file analyzers have permission to approve files within the UnKnoWnCheaTs downloads section. File Analyzer
    Members who have contributed financial support towards UnKnoWnCheaTs. Donator (9001)
    Awarded to members who have donated 10 times or more. Gratuity (9001)
    Points: 208,469, Level: 59
    Points: 208,469, Level: 59 Points: 208,469, Level: 59 Points: 208,469, Level: 59
    Level up: 12%, 285,531 Points needed
    Level up: 12% Level up: 12% Level up: 12%
    Activity: 5.1%
    Activity: 5.1% Activity: 5.1% Activity: 5.1%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    <wise words here>. Plus reputation.
    __________________

    I've learned that something constructive comes from every defeat.

    Real programmers don't document, if it was hard to write, it should be hard to understand.

    First learn computer science and all the theory, next develop a programming style, then forget all that and just hack.

    Learning is creation and not consumption. Knowledge is not something a learner absorbs, but something a learner creates.

    The path to success is paved with small wins. Even the grandest and most glorious victories rest on a string of modest but constructive steps forward.

    Roverturbo is offline
    Reply With Quote

    Old 7th November 2009, 03:07 AM   #8
    SEGnosis
    Hacked North Korea

    SEGnosis's Avatar

    Join Date: Mar 2009
    Posts: 2,838
    Reputation: 25709
    Rep Power: 422
    SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!SEGnosis has reputation that takes up 2GB of server space!
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Points: 90,129, Level: 43
    Points: 90,129, Level: 43 Points: 90,129, Level: 43 Points: 90,129, Level: 43
    Level up: 68%, 1,471 Points needed
    Level up: 68% Level up: 68% Level up: 68%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Quote:
    Originally Posted by Roverturbo View Post
    <wise words here>. Plus reputation.
    Shh Dont let him know the script!
    __________________
    SEGnosis is offline
    Reply With Quote

    Old 30th May 2010, 09:53 PM   #9
    jumpstart201
    Supreme G0d

    jumpstart201's Avatar

    Join Date: Jan 2010
    Location: Your mum!
    Posts: 390
    Reputation: 103
    Rep Power: 352
    jumpstart201 is officially drafted by UCjumpstart201 is officially drafted by UC
    strange.. About a month ago I did this without hassle and easily found the address and added it to my project.

    But now (v1.26) I've searched using both programs for the easy-bfh-dev-trunk but it is nowhere to be found I have found similar things such as easy-bfh-test-trunk and easy-bfh-test-release, but now no dev anywhere? Help appreciated, thanks in advance!
    __________________

    jumpstart201 is offline
    Reply With Quote

    Old 30th May 2010, 09:57 PM   #10
    Canaiba
    Graphics Lover

    Canaiba's Avatar

    Join Date: May 2010
    Posts: 74
    Reputation: 357
    Rep Power: 340
    Canaiba is a cheater commited to the causeCanaiba is a cheater commited to the causeCanaiba is a cheater commited to the causeCanaiba is a cheater commited to the cause
    Points: 10,212, Level: 12
    Points: 10,212, Level: 12 Points: 10,212, Level: 12 Points: 10,212, Level: 12
    Level up: 35%, 788 Points needed
    Level up: 35% Level up: 35% Level up: 35%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Awesome share!

    Rep +
    Canaiba is offline
    Reply With Quote

    Old 30th May 2010, 10:31 PM   #11
    Winslow
    Retired Administrator

    Winslow's Avatar

    Join Date: Nov 2004
    Posts: 4,892
    Reputation: 101014
    Rep Power: 623
    Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!Winslow has a huge epeen!
    Points: 214,129, Level: 59
    Points: 214,129, Level: 59 Points: 214,129, Level: 59 Points: 214,129, Level: 59
    Level up: 14%, 279,871 Points needed
    Level up: 14% Level up: 14% Level up: 14%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    Last Achievements Finding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput PointerFinding and Using the CConsoleInput Pointer
    Quote:
    Originally Posted by jumpstart201 View Post
    strange.. About a month ago I did this without hassle and easily found the address and added it to my project.

    But now (v1.26) I've searched using both programs for the easy-bfh-dev-trunk but it is nowhere to be found I have found similar things such as easy-bfh-test-trunk and easy-bfh-test-release, but now no dev anywhere? Help appreciated, thanks in advance!
    Search for the following: "dev.easy.ea.com" and you should see the CConsoleInput pointer referenced slightly above there.



    Try creating a signature scan for it, similar to how is done for ClassManager, that way you don't have to update it for every new version.
    Winslow is offline
    Reply With Quote

    Old 31st May 2010, 05:36 PM   #12
    jumpstart201
    Supreme G0d

    jumpstart201's Avatar

    Join Date: Jan 2010
    Location: Your mum!
    Posts: 390
    Reputation: 103
    Rep Power: 352
    jumpstart201 is officially drafted by UCjumpstart201 is officially drafted by UC
    Quote:
    Originally Posted by Winslow View Post
    Search for the following: "dev.easy.ea.com" and you should see the CConsoleInput pointer referenced slightly above there.



    Try creating a signature scan for it, similar to how is done for ClassManager, that way you don't have to update it for every new version.
    *Searches google for signature scan tutorials* thanks! i got it now wonder where easy-bfh-dev-trunk went though
    __________________

    jumpstart201 is offline
    Reply With Quote

    Old 27th July 2010, 11:53 PM   #13
    sepiantum
    n00bie

    sepiantum's Avatar

    Join Date: Jan 2010
    Posts: 16
    Reputation: 379
    Rep Power: 348
    sepiantum has learned Kazaa is not a third world countrysepiantum has learned Kazaa is not a third world countrysepiantum has learned Kazaa is not a third world countrysepiantum has learned Kazaa is not a third world country
    Can't seem to find it. Any help? I search easy-bfh-dev-trunk and it's not there. I've attached a screen shot.

    Attached Thumbnails
    Finding and Using the CConsoleInput Pointer-help-png  

    Last edited by sepiantum; 28th July 2010 at 12:00 AM. Reason: Put picture in post instead of attachment
    sepiantum is offline
    Reply With Quote

    Old 28th July 2010, 12:11 AM   #14
    LilHacker
    Junior Member

    LilHacker's Avatar

    Join Date: Jul 2010
    Posts: 54
    Reputation: 108
    Rep Power: 336
    LilHacker is officially drafted by UCLilHacker is officially drafted by UC
    Quote:
    Originally Posted by sepiantum View Post
    Can't seem to find it. Any help? I search easy-bfh-dev-trunk and it's not there. I've attached a screen shot.

    same here i've tried this many times on at least 3 separate occasions and still couldnt find it, but when and after we find it, we do we do now??
    LilHacker is offline
    Reply With Quote

    Old 28th July 2010, 12:35 AM   #15
    smoochy
    A Forum Hero

    smoochy's Avatar

    Join Date: Jan 2008
    Posts: 1,401
    Reputation: 12470
    Rep Power: 422
    smoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server space
    this method no longer works as of the 1.28 update im pretty sure.

    you can still bring up the console and look at text, but you cant type anything..
    smoochy is offline
    Reply With Quote

    Old 28th July 2010, 02:24 PM   #16
    Freaky123
    UC Contributor

    Freaky123's Avatar

    Threadstarter
    Join Date: Sep 2009
    Location: Netherlands
    Posts: 728
    Reputation: 1806
    Rep Power: 364
    Freaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all die
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    I will look at this later.. I will find another reference maybe
    __________________
    Proud to be a hacker!
    Programming languages I know: PHP, Javascript, XHTML, Flash Actionscript, c++
    Also good at: MYSQL/Oracle databases, ERD, SQL-injection and XSS
    Games I hack: Battlefield Heroes, Face of Mankind and Call of Duty MW2
    Freaky123 is offline
    Reply With Quote

    Old 6th August 2010, 01:31 AM   #17
    jhonkarter
    n00bie

    jhonkarter's Avatar

    Join Date: Jul 2010
    Posts: 14
    Reputation: 10
    Rep Power: 336
    jhonkarter has made posts that are generally average in quality
    Points: 5,904, Level: 8
    Points: 5,904, Level: 8 Points: 5,904, Level: 8 Points: 5,904, Level: 8
    Level up: 46%, 596 Points needed
    Level up: 46% Level up: 46% Level up: 46%
    Activity: 0%
    Activity: 0% Activity: 0% Activity: 0%
    With this data I can make a aimbot? type the FreeAIm?
    __________________
    http://www.unknowncheats.me/forum/image.php?type=sigpic&userid=174464&dateline=1281018914
    jhonkarter is offline
    Reply With Quote

    Old 6th August 2010, 04:34 AM   #18
    smoochy
    A Forum Hero

    smoochy's Avatar

    Join Date: Jan 2008
    Posts: 1,401
    Reputation: 12470
    Rep Power: 422
    smoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server spacesmoochy 's rep takes up 1 gig of server space
    negative.

    this WOULD have allowed you type type text like in BF2 when you press ~ you get console, this is the code for HEROES, but it doesn't work at the moment.

    look @ the aimbot thread for heroes!
    smoochy is offline
    Reply With Quote

    Old 6th August 2010, 02:36 PM   #19
    Freaky123
    UC Contributor

    Freaky123's Avatar

    Threadstarter
    Join Date: Sep 2009
    Location: Netherlands
    Posts: 728
    Reputation: 1806
    Rep Power: 364
    Freaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all die
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    Quote:
    Originally Posted by jhonkarter View Post
    With this data I can make a aimbot? type the FreeAIm?
    Learn c++ first then spend some time with reversing and asm.. then start asking stupid questions please!
    __________________
    Proud to be a hacker!
    Programming languages I know: PHP, Javascript, XHTML, Flash Actionscript, c++
    Also good at: MYSQL/Oracle databases, ERD, SQL-injection and XSS
    Games I hack: Battlefield Heroes, Face of Mankind and Call of Duty MW2
    Freaky123 is offline
    Reply With Quote

    Old 8th August 2010, 08:59 PM   #20
    Freaky123
    UC Contributor

    Freaky123's Avatar

    Threadstarter
    Join Date: Sep 2009
    Location: Netherlands
    Posts: 728
    Reputation: 1806
    Rep Power: 364
    Freaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all dieFreaky123 -- If this mans rep is lowered; we will all die
    Recognitions Award symbolizing a retired staff member who dedicated a notable amount of time and effort to their past staff position. Former Staff
    If someone needs the newest offset its: 0x14A494C
    Have fun with it..

    ps. I will update the tutorial soon
    __________________
    Proud to be a hacker!
    Programming languages I know: PHP, Javascript, XHTML, Flash Actionscript, c++
    Also good at: MYSQL/Oracle databases, ERD, SQL-injection and XSS
    Games I hack: Battlefield Heroes, Face of Mankind and Call of Duty MW2

    Last edited by Freaky123; 8th August 2010 at 10:28 PM.
    Freaky123 is offline
    Reply With Quote
    Reply


    Similar Threads
    Thread Thread Starter Forum Replies Last Post
    [Question] Error finding a pointer in 3.2 rickye America's Army Operations 3.x 10 29th December 2011 12:53 AM
    [Help] Finding Enemy Pointer -Dimensions- Combat Arms 1 31st August 2010 06:51 PM
    [Release] BFH 1.18 CConsoleInput pointer ThJohnDillinger Battlefield Heroes 25 27th March 2010 09:49 PM
    [Question] Help finding a static pointer vermillion Programming for Beginners 1 7th October 2009 10:23 AM
    [Help] Finding Static Pointer rlange VB.NET 1 4th December 2006 03:39 PM

    Tags
    cconsoleinput, finding, pointer


    Forum Jump


    All times are GMT. The time now is 12:26 PM.

    Contact Us - Toggle Dark Theme
    Terms of Use Information Privacy Policy Information
    Copyright ©2000-2024, Unknowncheats™
    Finding and Using the CConsoleInput Pointer Finding and Using the CConsoleInput Pointer
    sponsored advertisement
    no new posts