Public PTC
Here's the PTC I used before I quit coding ca hacks... I believe it is still working.
Good luck, and have fun. 
Code:
#define consoleunwrapped = 0x486010;
void __cdecl push( const char* cCommand)
{
void* address = ( void* ) consoleunwrapped;
__asm
{
Push cCommand
call address
add esp, 0x4
}
}

