Page 1 of 4 123 ... LastLast
Results 1 to 15 of 61

Hybrid View

  1. #1
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed

    !CN's ConsolePush

    Well this is the method I been using for PushToConsole for awhile!

    The Current *cough* lets see if I can get away with this!....

    NA CN Address : 0x007d9200

    EU CN Address : 0x007d9200

    [php]void ConsolePush(const char* Command) {
    DWORD CNADDIE = 0x007d9200;
    void* Send = ( void* )*( DWORD* )(CNADDIE);
    __asm
    {
    /* CREDITS TO CN */
    push Command;
    call Send;
    add esp, -3-1+2+6;
    }
    }[/php]

    Note : Tyrannus pointed out this is leached from Alternitive Console, but just to assure everyone its not this code is slightly different. Also I tried using my CN addie with Alternitive, and I got D/c.
    Last edited by CoderNever; 07-19-2010 at 01:44 AM.

  2. The Following 3 Users Say Thank You to CoderNever For This Useful Post:

    markoj (07-19-2010),Polo™ (07-19-2010),ppl2pass (07-19-2010)

  3. #2
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty

    My one:

    Code:
    void __cdecl PushToConsole(char* sVal)
    {
        DWORD zAddress = 0x007D9200;
        void* szConsole = (void*)*(DWORD*)(zAddress);
        _asm
        {
            push sVal
            call szConsole
            add esp, 4
        }
    }
    EDIT: Just tested and DC.
    Wanna see if the DWORD makes a difference

    EDIT2: Added DWORD and working fine.
    Nice find CN

    Code above is working fine ^^
    Last edited by ac1d_buRn; 07-19-2010 at 12:46 AM.

  4. The Following 3 Users Say Thank You to ac1d_buRn For This Useful Post:

    cookie hack (07-19-2010),[MPGH]Disturbed (07-21-2010),markoj (07-19-2010)

  5. #3
    fvestrgenrl's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Posts
    172
    Reputation
    9
    Thanks
    26
    Quote Originally Posted by ac1d_buRn View Post

    My one:

    Code:
    void __cdecl PushToConsole(char* sVal)
    {
        DWORD zAddress = 0x007D9200;
        void* szConsole = (void*)*(DWORD*)(zAddress);
        _asm
        {
            push sVal
            call szConsole
            add esp, 4
        }
    }
    EDIT: Just tested and DC.
    Wanna see if the DWORD makes a difference

    EDIT2: Added DWORD and working fine.
    Nice find CN

    Code above is working fine ^^
    This D/C's for me... I use this one and it works fine:
    Code:
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x3778BFB0 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    And no thats not my code that came straight from CN's tutorial

  6. #4
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by ac1d_buRn View Post

    My one:

    Code:
    void __cdecl PushToConsole(char* sVal)
    {
        DWORD zAddress = 0x007D9200;
        void* szConsole = (void*)*(DWORD*)(zAddress);
        _asm
        {
            push sVal
            call szConsole
            add esp, 4
        }
    }
    EDIT: Just tested and DC.
    Wanna see if the DWORD makes a difference

    EDIT2: Added DWORD and working fine.
    Nice find CN

    Code above is working fine ^^

    Code:
    void __cdecl PushToConsole(char* sCommand)
    {
        void* lazyguy = (void*)*(DWORD*)(DWORD)(0x007D9200);
        _asm
        {
            push sCommand
            call lazyguy
            add esp, 4
        }
    }
    did u try that?
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  7. #5
    neononxxx's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    why do you wanna know?? so you can kill me?
    Posts
    1,226
    Reputation
    36
    Thanks
    342
    My Mood
    Drunk
    Mine is totally different from you guys.
    [IMG]https://www.find-heavyequipmen*****m/images/small-loading.gif [/IMG]Loading content... Please wait while the rest of this post loads.

  8. #6
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    What is it?

  9. #7
    neononxxx's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    why do you wanna know?? so you can kill me?
    Posts
    1,226
    Reputation
    36
    Thanks
    342
    My Mood
    Drunk
    Add the addie above The LTC
    thats all im saying.
    [IMG]https://www.find-heavyequipmen*****m/images/small-loading.gif [/IMG]Loading content... Please wait while the rest of this post loads.

  10. #8
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Credits to __GHOSTER__ and fatboy88, not you.

    https://i25.tinypic.com/2iuu6uw.png

    Code:
    			DWORD dwCShell = (DWORD)GetModuleHandle("CShell.dll");
    			if( dwCShell != NULL )
    			{
    				char szAddress[256];
    				
    				PDWORD ILTClient = ( PDWORD )( 0x3778BFB0 );
                    DWORD Console = *( PDWORD )( * ILTClient  + 0x208 );
    
    				sprintf( szAddress, "Console Address: 0x%X", Console );
    
    				Font->DrawTextA( 5, 150, D3DCOLOR_XRGB( 255, 0, 255 ), szAddress );

  11. #9
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Oh yeah cause that looks so much like my code? I have no idea where you got this...I only go on MPGH and Maty's No where else. Correct me if I'm wrong but this pretty much has nothing to do with my post?
    Last edited by CoderNever; 07-19-2010 at 12:47 AM.

  12. #10
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by CoderNever View Post
    Oh yeah cause that looks so much like my code? I have no idea where you got this...I only go on MPGH and Maty's No where else. Correct me if I'm wrong but this pretty much has nothing to do with my post?
    Yes because of course your code looks nothing like __GHOSTER__'s.

    Code:
       void __cdecl SetConsoleVariable(char* szVal){
            void* vSetVar = (void*) 0x4169C0;
            _asm
            {
                push szVal
                call vSetVar
                add esp, 4
            }
        }

    And WTF is with this?

    Code:
    add esp, -3-1+2+6;

  13. #11
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Lol xD I told Acid..I was board so I added all those numbers xD. Dude I don't leach I promise to god. I was screwing around with the PushToConsole Method, and I was trying to change things around..and I discovered this completely on my own with no help at all. By the way its like saying if you release this code..

    Code:
    if(1+1=2) {
    Message(Null,"Your Result is 2!",Null);
    }
    then I release it? Its your code that you coded and I just leached it?
    Last edited by CoderNever; 07-19-2010 at 12:56 AM.

  14. #12
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    That add esp is just 4... why add in all that other shit ?

  15. #13
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Here is what I posted on another forum:


    If you want to make a hack that works for EU and NA use signatures.

    Code:

    Code:
    dwConsoleAddress = FindPattern((DWORD)dwEngine, (DWORD)0xFFFFFFFF, (PBYTE)"\xE9\x00\x00\x00\x00\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xA1\x00\x00\x00\x00", "x????xxxxxxxxxxxx????" );
    dwEngine = Engine.exe

    Then this:

    Code:

    Code:
    void __cdecl RunConsoleCommand( const char* szVal)
    {
        void* vSetVar = (void*)dwConsoleAddress;
        _asm
        {
            push szVal
            call vSetVar
            add esp, 4
        }
    }
    Code:
    RunConsoleCommand("ModelDebug_DrawBoxes 1");
    Just use that if you don't want to worry about updates.
    Last edited by Synns; 07-19-2010 at 01:00 AM.

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

    ac1d_buRn (07-19-2010)

  17. #14
    CoderNever's Avatar
    Join Date
    Feb 2009
    Gender
    female
    Location
    https://mpgh.net MPGHCash: $700,458,011
    Posts
    1,198
    Reputation
    131
    Thanks
    2,236
    My Mood
    Buzzed
    Dude don't forget i have "*( DWORD* )" in mine which completly changes the reading of the address. I did not leach this I know for a fact. I was fucking around with PushToConsole, and found out how to do this. Again the only CA hacking sites im on is MatyPatty's site, and MPGH.

  18. #15
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by Relyc View Post
    Tyrannus you said to stop using CDetour, what would i use instead of that to bypass hackshield
    Just use any other detours like Detours 2.1 or something.
    Or if you know what your doing, Use gordons method


    Quote Originally Posted by Tyrannus View Post
    Here is what I posted on another forum:




    Just use that if you don't want to worry about updates.
    holey shit. Thank you so much.
    Where would i put the find pattern tho?
    Last edited by ac1d_buRn; 07-19-2010 at 04:43 PM.

Page 1 of 4 123 ... LastLast

Similar Threads

  1. CN!'s ConsolePush
    By CoderNever in forum Combat Arms EU Hack Coding/Source Code
    Replies: 31
    Last Post: 07-30-2010, 05:51 AM