Posts 1–6 of 6 · Page 1 of 1
Help me please
How can i make or find a undetected PTC method. i dont ask for a undetected PTC method just wanna know how can i make one? what do i need for it.
And idk who made this one but is it patched cause i cant test :P
Code:
void __cdecl PushToConsole(const char* szCommand )
{
HMODULE hMod = GetModuleHandleA("CShell.dll");
if(hMod == NULL)
return;
int* ltClientAddr = (int*) 0x377C4450;
typedef int (*ptc_t)(const char *);
ptc_t ptc = *(ptc_t*) (*ltClientAddr + 0x208);
ptc(szCommand);
}

Originally Posted by
joered
How can i make or find a undetected PTC method. i dont ask for a undetected PTC method just wanna know how can i make one? what do i need for it.
And idk who made this one but is it patched cause i cant test :P
Code:
void __cdecl PushToConsole(const char* szCommand )
{
HMODULE hMod = GetModuleHandleA("CShell.dll");
if(hMod == NULL)
return;
int* ltClientAddr = (int*) 0x377C4450;
typedef int (*ptc_t)(const char *);
ptc_t ptc = *(ptc_t*) (*ltClientAddr + 0x208);
ptc(szCommand);
}

You have an old address...
use 0x377E7810

Originally Posted by
CodeDemon

You have an old address...
use 0x377E7810
Didnt checked but not my PTC Method. Idk who made it. But i wanna know how i can make my own???

Originally Posted by
joered
Didnt checked but not my PTC Method. Idk who made it. But i wanna know how i can make my own???
Understand how this method works then rewrite it.

Originally Posted by
why06
Understand how this method works then rewrite it.
Thank u /


Originally Posted by
why06
Understand how this method works then rewrite it.
Marko made it, and to make one you learn C++ and ASM
Posts 1–6 of 6 · Page 1 of 1
This thread is closed for replies.