!CN's ConsolePush

Posts 115 of 61 · Page 1 of 5
!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.

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 ^^
Mine is totally different from you guys.
Add the addie above The LTC
thats all im saying.
Credits to __GHOSTER__ and fatboy88, not you.

http://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 );
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?
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;
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?
That add esp is just 4... why add in all that other shit ?
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.
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.
Still does not look like my code.
What is matypatty site
I can't say or it will be advertising :S.
Posts 115 of 61 · Page 1 of 5
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?