1 Attachment(s)
Re: juver sourcee updated files
Re: juver sourcee updated files
share the db please EmpireZ.
1 Attachment(s)
Re: juver sourcee updated files
Quote:
Originally Posted by
soske98
share the db please EmpireZ.
Attachment 170174
Re: juver sourcee updated files
thank you very much EmpireZ.
Re: juver sourcee updated files
Does anyone know how to solve the problem that when I run the Emulator.exe,
it prompts "The application was unable to start correctly 0xc0000142...." ?
Re: juver sourcee updated files
Quote:
Originally Posted by
UKnowMeKnow
Well, thanks.. I already test again.
Re: juver sourcee updated files
Quote:
Originally Posted by
pan0s
Does anyone know how to solve the problem that when I run the Emulator.exe,
it prompts "The application was unable to start correctly 0xc0000142...." ?
same issue
Re: juver sourcee updated files
Quote:
Originally Posted by
pan0s
Does anyone know how to solve the problem that when I run the Emulator.exe,
it prompts "The application was unable to start correctly 0xc0000142...." ?
you can't run this game without important dll better download the compatible one or asking ppl here to upload fqd and lg-7 dll because mine is bypass version which is without dll hook.
Re: juver sourcee updated files
Quote:
Originally Posted by
EmpireZ
you can't run this game without important dll better download the compatible one or asking ppl here to upload fqd and lg-7 dll because mine is bypass version which is without dll hook.
Are you using HWID or the DLL one? I used HWID but I don't know if its complete.
Re: juver sourcee updated files
Quote:
Originally Posted by
EmpireZ
how did you fixed this? https://ibb.co/r71002r
https://ibb.co/nkyrSNb
Re: juver sourcee updated files
anyone experiencing level editor crashing?
Re: juver sourcee updated files
agree with this. it's better to merge the other's features for now
Re: juver sourcee updated files
when lv.200 party not share exp. how to fix?
Re: juver sourcee updated files
Quote:
Originally Posted by
EmpireZ
you can't run this game without important dll better download the compatible one or asking ppl here to upload fqd and lg-7 dll because mine is bypass version which is without dll hook.
Just missing .Net Framework 3.5 or vcredist_x86. The problem fixed after installing them,
Quote:
Originally Posted by
soske98
find
Code:
BOOL LOAD_PARAM2( const TCHAR *szRootPath, bool isServer )
replace to:
Code:
BOOL LOAD_PARAM2( const TCHAR *szRootPath, bool isServer )
{
std::string strParamFile(szRootPath);
strParamFile += "\\RANLogs\\param2.ini";
std::ifstream param2(strParamFile.c_str());
std::string strDefaultHash = "asj385jgk69glfmvu5kfotkvitkvotkv";
SETSERVERHASH(strDefaultHash);
if (param2.is_open())
{
std::string log;
while (getline (param2, log)) {
if(!isServer)SETCLIENTHASH(log);
// else SETSERVERHASH(log);
}
param2.close();
std::ofstream param2Edit (strParamFile.c_str());
if(param2Edit.is_open)
{
param2Edit << strDefaultHash;
param2Edit.close();
return TRUE;
}
return FALSE;
}
else
{
SETCLIENTHASH("");
return FALSE;
}
}
Re: juver sourcee updated files
Quote:
Originally Posted by
pan0s
find
Code:
BOOL LOAD_PARAM2( const TCHAR *szRootPath, bool isServer )
replace to:
Code:
BOOL LOAD_PARAM2( const TCHAR *szRootPath, bool isServer )
{
std::string strParamFile(szRootPath);
strParamFile += "\\RANLogs\\param2.ini";
std::ifstream param2(strParamFile.c_str());
std::string strDefaultHash = "asj385jgk69glfmvu5kfotkvitkvotkv";
SETSERVERHASH(strDefaultHash);
if (param2.is_open())
{
std::string log;
while (getline (param2, log)) {
if(!isServer)SETCLIENTHASH(log);
// else SETSERVERHASH(log);
}
param2.close();
std::ofstream param2Edit (strParamFile.c_str());
if(param2Edit.is_open)
{
param2Edit << strDefaultHash;
param2Edit.close();
return TRUE;
}
return FALSE;
}
else
{
SETCLIENTHASH("");
return FALSE;
}
}
not working