|
You last visited: Today at 19:15
Advertisement
CSV3Hook Error "failed 1".
Discussion on CSV3Hook Error "failed 1". within the CO2 Private Server forum part of the Conquer Online 2 category.
01/05/2014, 13:08
|
#1
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
CSV3Hook Error "failed 1".
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[] = { 0x85, 0xC0, 0x75, 0x00, 0x8B, 0x4E, 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);
if (match==NULL)
{
sprintf(szDebug, "failed 1", (DWORD)match);
MessageBoxA(NULL, szDebug, "ERROR", MB_OK);
return;
}
anyone could help??
|
|
|
01/05/2014, 13:36
|
#2
|
elite*gold: 0
Join Date: Sep 2013
Posts: 197
Received Thanks: 141
|
The pattern doesn't work anymore for the current patch(es) ...
|
|
|
01/05/2014, 13:54
|
#3
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
u have the new one ?
|
|
|
01/05/2014, 14:02
|
#4
|
elite*gold: 0
Join Date: Sep 2013
Posts: 197
Received Thanks: 141
|
Quote:
Originally Posted by abdoumatrix
u have the new one ?
|
Yes
|
|
|
01/05/2014, 14:06
|
#5
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by SteveRambo
Yes
|
So ? 
Not For Sharing
|
|
|
01/05/2014, 14:10
|
#6
|
elite*gold: 0
Join Date: Sep 2013
Posts: 197
Received Thanks: 141
|
Quote:
Originally Posted by abdoumatrix
So ? 
Not For Sharing 
|
Oh, that's what you meant! Nah, not for sharing, I really don't like this spoonfeeding epvp community. I hope you won't share it either when you find it.
|
|
|
01/05/2014, 14:15
|
#7
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by SteveRambo
Oh, that's what you meant! Nah, not for sharing, I really don't like this spoonfeeding epvp community. I hope you won't share it either when you find it. 
|
Private Share? PM?
anyone else?
|
|
|
01/05/2014, 23:37
|
#8
|
elite*gold: 0
Join Date: Sep 2013
Posts: 197
Received Thanks: 141
|
Quote:
Originally Posted by abdoumatrix
Private Share? PM?
anyone else?
|
Haha  . You should probably try asking if you can have this moved to the programming section, I think that's a better place to ask this kind of stuff.
|
|
|
01/06/2014, 04:23
|
#9
|
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 950
|
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
|
|
|
01/06/2014, 15:11
|
#10
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by Super Aids
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
|
ty for sharing this joke
appreciate if any1 could explain what this pattern could affect.
and
if any1 could guide my to the best tutorial to understand how to get it myself.
|
|
|
01/06/2014, 16:03
|
#11
|
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,580
|
Quote:
Originally Posted by abdoumatrix
ty for sharing but still the same
appreciate if u could explain what this could affect as when i removed
PHP Code:
if (match==NULL)
{
sprintf(szDebug, "failed 1", (DWORD)match);
MessageBoxA(NULL, szDebug, "ERROR", MB_OK);
return;
}
it worked fine but i know what it isn't the right solution to a problem.
appreciate if u could guide my to the best tutorial to understand how to get it myself.
|
|
|
|
01/06/2014, 16:18
|
#12
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by phize
|
 i miss his comment //read the hex
 i falled in his trap.
|
|
|
01/06/2014, 16:31
|
#13
|
elite*gold: 12
Join Date: Jul 2011
Posts: 8,283
Received Thanks: 4,191
|
Quote:
Originally Posted by abdoumatrix
 i miss his comment //read the hex
 i falled in his trap. 
|
He's frustrated because you removed the error check, allowing the program to continue with the error, which does nothing because the match is null. How much experience do you have with programming?
|
|
|
01/06/2014, 16:49
|
#14
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by Spirited Fang
He's frustrated because you removed the error check, allowing the program to continue with the error, which does nothing because the match is null. How much experience do you have with programming?
|
only commonsense in c++ , intermediate at C#.
yeah i know what i have done (it was just some test to see what will happen and what this pattern affect)
that why i wonder what this pattern affect.
|
|
|
01/06/2014, 18:37
|
#15
|
elite*gold: 0
Join Date: Sep 2013
Posts: 197
Received Thanks: 141
|
Quote:
Originally Posted by abdoumatrix
only commonsense in c++ , intermediate at C#.
yeah i know what i have done (it was just some test to see what will happen and what this pattern affect)
that why i wonder what this pattern affect.
|
The pattern is used to find the ReceiveMsg function in the Conquer process. I'm pretty sure there's a pattern for finding the SendMsg function as well in the CSV3Hook, but that pattern probably wasn't "out-dated" by the recent patch(es).
|
|
|
 |
|
Similar Threads
|
[M˛Fisch] Error crate thread "CreateRemoteThread" has failed [Lösung]
02/29/2012 - Metin2 Guides & Templates - 14 Replies
Viele von euch werden diesen Fehler: "Error crate thread "CreateRemoteThread" has failed" bekommen und nicht botten können. Um euch zu helfen, habe ich diesen Thread erstellt.
So könnt ihr den oben genannten Fehler vermeiden:
Wenn ich euch helfen konnte, bitte THX geben!
Zudem sind auch Spenden gern gesehen :D
|
[ERROR] HGWC "Failed to connect to server : W[2003] L[0]" [HELP]
06/01/2011 - S4 League - 7 Replies
Help me fix this problem please. The HGWC is stuck on the Step 4 and then "Failed to connect to server : W L" is appears. Help me. :(
|
ERROR SRO ""Recording Registry failed!""
02/23/2011 - Silkroad Online - 1 Replies
Hello everyone:
I need your help ... to execute the Silkroad launcher said:
""Recording Registry failed!""
GameCam had installed but the uninstall some time. From time to time I started to launch this mistake
http://s1.subirimagenes.com/otros/previo/thump_48 6290wtf.jpg
|
All times are GMT +1. The time now is 19:16.
|
|