Hey , I'm trying to hook up a dll into my client's loader so that CSV3config.ini will no longer have use to me . Therefore , Hide my IP and Auth Port from anyone.
I'm having an issue with the pattern[] of the packet processor , I believe that TQ changes it by the time changes.
However, I get an error "Failed1" while running my loader with the new dll. Which means the FindMemoryPattern() function isn't true because it didnt find any MemoryPattern's attached to my pattern[]. It's probably because my pattern[] or the wildcards[] bool is out of dated or needs to be updated with TQ's latest. I dont have any idea where to find the current working pattern for my DLL to work .
Help is pretty much appreciated , Ty.
I'm having an issue with the pattern[] of the packet processor , I believe that TQ changes it by the time changes.
PHP Code:
BYTE pattern[] = { 0x6c, 0x32, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x65, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x65, 0x72, 0x69, 0x6e, 0x67 }; // HINT: read the hex values
bool wildcards[] = { 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1 };
PBYTE match = (PBYTE)FindMemoryPattern(pattern, wildcards, 19);
if (match == NULL)
{
sprintf(szDebug, "failed 1", (DWORD)match);
MessageBoxA(NULL, szDebug, "ERROR", MB_OK);
return;
}
Help is pretty much appreciated , Ty.