How to remove Xtrap T_T Help !

Results 1 to 10 of 10
  1. #1
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    How to remove Xtrap T_T Help !

    How to remove Xtrap and NHN ?
    Someone help me Remove Xtrap :D
    On source or on client whatever you can help me


  2. #2
    Account Upgraded | Title Enabled! TalkingBot is offline
    MemberRank
    Dec 2011 Join Date
    TheHostingsquadLocation
    213Posts

    Re: How to remove Xtrap T_T Help !

    @skip_ xtrap save as test.txt

  3. #3
    Enthusiast jeries is offline
    MemberRank
    Jun 2011 Join Date
    29Posts

    Re: How to remove Xtrap T_T Help !

    what does xtrap do? i have it on my server and i dont know if i should remove it or not

  4. #4
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: How to remove Xtrap T_T Help !

    Quote Originally Posted by jeries View Post
    what does xtrap do? i have it on my server and i dont know if i should remove it or not
    Antihack

  5. #5
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: How to remove Xtrap T_T Help !

    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

  6. #6
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: How to remove Xtrap T_T Help !

    Quote Originally Posted by Gun[Lengend] View Post
    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
    Which mode are you building in?

  7. #7
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: How to remove Xtrap T_T Help !

    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 !

  8. #8
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: How to remove Xtrap T_T Help !

    Challenge Quest wasn't implemented yet when the source was leaked.


    Change your Locale.xml to this
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <XML>
    	<LOCALE>
     		<COUNTRY>KOR</COUNTRY>
    		<LANGUAGE>KOR</LANGUAGE>
    		<MAXPLAYERS>16</MAXPLAYERS>
    	</LOCALE>
    </XML>
    And build in KOR_Release_publish. That will fix the .MEF thingy.

    As for XTRAP, I've done countless number of edits.. But I'll post the ones that come in my way.

    main.cpp
    Code:
    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;
    	}
    }
    main.cpp
    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

  9. #9
    Gunz General Develop Gun[Lengend] is offline
    MemberRank
    Jan 2010 Join Date
    Gunz Viet NamLocation
    312Posts

    Re: How to remove Xtrap T_T Help !

    yeah i'm right to remove xtrap
    like this what u said :D

  10. #10
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: How to remove Xtrap T_T Help !

    Quote Originally Posted by Gun[Lengend] View Post
    yeah i'm right to remove xtrap
    like this what u said :D
    All I do is build, and run. Check mlog errors, find them in the source, and return true instead of false, and fuck it.



Advertisement