How to remove Xtrap and NHN ?
Someone help me Remove Xtrap :D
On source or on client whatever you can help me
Printable View
How to remove Xtrap and NHN ?
Someone help me Remove Xtrap :D
On source or on client whatever you can help me
@skip_ xtrap save as test.txt
what does xtrap do? i have it on my server and i dont know if i should remove it or not
How to remove Xtrap on source code.
I'm comment Xtrap by adding // before the line in source
When i build Xtrap has been removed but following the tutorial of Vuison, i can't removed mef _ _ !
The Runnable built cannot read xml file
I'm try to build KOR_Release_publish and USA_Release_Publish
But know i'm making all succesfull ( Something not made by mysefl )
Can you help me Vusion about remove .mef ?
And i don't know how to play Challenge Quest !
Challenge Quest wasn't implemented yet when the source was leaked.
Change your Locale.xml to this
And build in KOR_Release_publish. That will fix the .MEF thingy.Code:<?xml version="1.0" encoding="UTF-8"?>
<XML>
<LOCALE>
<COUNTRY>KOR</COUNTRY>
<LANGUAGE>KOR</LANGUAGE>
<MAXPLAYERS>16</MAXPLAYERS>
</LOCALE>
</XML>
As for XTRAP, I've done countless number of edits.. But I'll post the ones that come in my way.
main.cpp
main.cppCode:bool CheckXTrapIsGetTestCode() // add sgk 0621
{
char szBuf[256] = "";
FILE* fp = fopen("XTrapTest.txt", "rt");
if (fp)
{
fgets(szBuf, 256, fp);
mlog("XTrapTest.txt : \n");
mlog(szBuf);
mlog("\n");
fclose(fp);
if (stricmp(szBuf, "RUN_XTRAP_TEST_CODE") == 0)
{
return true;
}
else
{
return false;
}
}
else
{
return true;
}
}
Code:#ifdef _XTRAP // update sgk 0702 start
// mlog("XTRAP Start\n");
char szTemp[256] = {0,};
bool bPatchSkip = true;
bool bIsXtrapTest = CheckXTrapIsGetTestCode();
/*if (bIsXtrapTest)
{
// XTRAP Å×½ºÆ®¿ë ÆÄÀϰæ·Î·Î ½ÇÇàµÈ´Ù. //
OnGetXTrapTestCodeArgv(szTemp, &bPatchSkip);
}
else
{
// XTRAP ¸®¾ó ¼¹ö¿ë ÆÄÀϰæ·Î·Î ½ÇÇàµÈ´Ù. //
OnGetXTrapRealCodeArgv(szTemp, &bPatchSkip);
}*/
if (!bPatchSkip)
{
XTrap_L_Patch(szTemp, szModuleFileName, 60);
}
// XTrap_C_Start(szTemp, NULL);
// XTrap_C_KeepAlive();
// mlog("XTRAP End\n");
#endif
yeah i'm right to remove xtrap
like this what u said :D