CSV3Hook Error "failed 1".

01/07/2014 14:28 CrystalCastle#16
Quote:
Originally Posted by abdoumatrix View Post
hey every1.

at the last patchs every time i try to open conquer using csv3hook
"failed 1" error appeared.

when i tried to check its open source

i see this
PHP Code:
    BYTE pattern[] = { 0x850xC00x750x000x8B0x4E0x000xE80x000x000x000x000x830x4D0x000x000x8B0x000x00 };
    
bool wildcards[] = { 000100101111001101};
    
PBYTE match = (PBYTE)FindMemoryPattern(patternwildcards19);

    if (
match==NULL)
    {
        
sprintf(szDebug"failed 1", (DWORD)match);
        
MessageBoxA(NULLszDebug"ERROR"MB_OK);
        return;
    } 
anyone could help??:)
This will work :D

Code:
	BYTE pattern[] = { 0x85, 0xC0, 0x75, 0x00, 0x8B, 0x4F, 0x00, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x83, 0x4D, 0x00, 0x00, 0x8B, 0x00, 0x00 };
	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);
01/07/2014 14:35 SteveRambo#17
Quote:
Originally Posted by CrystalCastle View Post
This will work :D

Code:
	BYTE pattern[] = { 0x85, 0xC0, 0x75, 0x00, 0x8B, 0x4F, 0x00, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x83, 0x4D, 0x00, 0x00, 0x8B, 0x00, 0x00 };
	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);
Quote:
Originally Posted by phize View Post
[Only registered and activated users can see links. Click Here To Register...]
.
01/07/2014 15:30 CrystalCastle#18
Quote:
Originally Posted by SteveRambo View Post
.
Well I don't use it anymore so I'm happy to release what I WORKED ON....
01/07/2014 16:07 abdoumatrix#19
Quote:
Originally Posted by CrystalCastle View Post
This will work :D

Code:
	BYTE pattern[] = { 0x85, 0xC0, 0x75, 0x00, 0x8B, 0x4F, 0x00, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x83, 0x4D, 0x00, 0x00, 0x8B, 0x00, 0x00 };
	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);

it works for patchs 5852 or lower only.
01/07/2014 16:12 SteveRambo#20
Quote:
Originally Posted by abdoumatrix View Post
it works for patchs 5852 or lower only.
If you look carefully, you'll notice the pattern he posted isn't identical to yours.
01/07/2014 17:08 abdoumatrix#21
Quote:
Originally Posted by SteveRambo View Post
If you look carefully, you'll notice the pattern he posted isn't identical to yours.
from E to F :D
02/19/2014 23:59 Adventure-MMO#22
This not working in 5868+?

No longer opening conquer.exe
02/20/2014 09:03 KraHen#23
Worked for me like 1-2 patches ago.
06/02/2014 03:56 mateo136#24
anyone know a metod to find the pattern?
07/16/2014 17:01 abdoumatrix#25
do any one know why when i compile the project normaly it don't open website that invoked by chat packet or by closing the client
but when i change the "Use of MFC " from "static Library" to "Standard Window Library" it open website when i close the client but i can login and always see invaild id message.

(excuse me i don't have much knowlodge in c++ :()