[HELP]Need a new PTC Method
Hello MPGH,

I'm using this method, that everybody is telling me is patched..
void __cdecl cBase::PushToConsole(const char* szCommand )
{
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
}{
DWORD *LTClient = ( DWORD* )( 0x377ED910 );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
If anbody knows a new METHOD or has a new method tut.. please PM me, or post it below,
Thank-you.



I'm like you. It's so fck*ng hard to create a new one.
Some public PTC's like Markoj's method should be working.
They're telling you it's patched cause it is...
Just try different things...
Also you could search on MPGH...
Correct oh and seep the pm you sent me i downloaded the first one and the pop up came up still "cannot load kernel drive"
What system are you on again?
OP LEARN FUCKING C++. GO BUY A BOOK AND DON'T COME BACK UNTIL YOU HAVE READ IT AND FULLY UNDERSTAND IT.
I mean seriously! We are not going to spoon feed. You have 4 threads on the front page and they are all asking for help. You're like Yomo all over again...
It should work fine....
[php]void __cdecl cBase::PushToConsole(const char* szCommand ){
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( 0x377ED910 );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
}[/php]
Use this one.
Making ptc methods is so fucking easy you have got to be kidding me. It only takes extremely basic knowledge of C++ to be able to make a ptc method undetected. Go learn it before you try and make public hacks, it will help you in the end and eliminate all of your begging. Yes, this is the help section, but it's not the spoonfeeding section.
Dont worry, got my own.. Great help, Thanks!
Request
//Close Thread
[php]
void __cdecl cBase::PushToConsole(const char* szCommand ){
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTClient = ( DWORD* )( 0x377ED910 );
void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
__asm
{
push szCommand;
call CONoff;
add esp, 4;
}
}
}
[/php]
Don't add cBase::, not everyone has that class.