
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,

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;
}
}