juver sourcee updated files

Page 2 of 41 FirstFirst 1234567891012 ... LastLast
Results 16 to 30 of 604
  1. #16
    Jedi Knight EmpireZ is offline
    MemberRank
    May 2020 Join Date
    404 Not FoundLocation
    237Posts

    Re: juver sourcee updated files

    tested
    tested.jpg

  2. #17
    Apprentice soske98 is offline
    MemberRank
    Jun 2020 Join Date
    19Posts

    Re: juver sourcee updated files

    share the db please EmpireZ.

  3. #18
    Jedi Knight EmpireZ is offline
    MemberRank
    May 2020 Join Date
    404 Not FoundLocation
    237Posts

    Re: juver sourcee updated files

    Quote Originally Posted by soske98 View Post
    share the db please EmpireZ.
    freshdb.rar

  4. #19
    Apprentice soske98 is offline
    MemberRank
    Jun 2020 Join Date
    19Posts

    Re: juver sourcee updated files

    thank you very much EmpireZ.

  5. #20
    Member pan0s is offline
    MemberRank
    Nov 2020 Join Date
    HKLocation
    98Posts

    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...." ?

  6. #21
    Member Grayboy95 is offline
    MemberRank
    Sep 2020 Join Date
    68Posts

    Re: juver sourcee updated files

    Quote Originally Posted by UKnowMeKnow View Post
    whats new?
    - item mall
    - classic ui
    - live global ranking
    - new in game user panel
    - inventori lock features


    link : https://www.mediafire.com/file/u4xu0...ntory.rar/file
    base client sagupan ran
    Well, thanks.. I already test again.

  7. #22
    Alpha Member Asero1933 is offline
    MemberRank
    Mar 2011 Join Date
    Here...Location
    1,696Posts

    Re: juver sourcee updated files

    Quote Originally Posted by pan0s View Post
    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

  8. #23
    Jedi Knight EmpireZ is offline
    MemberRank
    May 2020 Join Date
    404 Not FoundLocation
    237Posts

    Re: juver sourcee updated files

    Quote Originally Posted by pan0s View Post
    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.

  9. #24
    Account Upgraded | Title Enabled! Frozenn is offline
    MemberRank
    Aug 2016 Join Date
    PerfLogsLocation
    273Posts

    Re: juver sourcee updated files

    Quote Originally Posted by EmpireZ View Post
    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.

  10. #25
    Apprentice soske98 is offline
    MemberRank
    Jun 2020 Join Date
    19Posts

    Re: juver sourcee updated files

    Quote Originally Posted by EmpireZ View Post
    tested
    tested.jpg

    how did you fixed this? https://ibb.co/r71002r
    https://ibb.co/nkyrSNb

  11. #26
    Valued Member m4rkx11 is offline
    MemberRank
    Oct 2019 Join Date
    148Posts

    Re: juver sourcee updated files

    anyone experiencing level editor crashing?

  12. #27
    Enthusiast Paragon is offline
    MemberRank
    Oct 2020 Join Date
    38Posts

    Re: juver sourcee updated files

    agree with this. it's better to merge the other's features for now

  13. #28
    Apprentice iamponddd is offline
    MemberRank
    Jul 2020 Join Date
    14Posts

    Re: juver sourcee updated files

    when lv.200 party not share exp. how to fix?

  14. #29
    Member pan0s is offline
    MemberRank
    Nov 2020 Join Date
    HKLocation
    98Posts

    Re: juver sourcee updated files

    Quote Originally Posted by EmpireZ View Post
    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 View Post
    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;
    		}
    	}

  15. #30
    Enthusiast Adriane2014 is offline
    MemberRank
    Mar 2019 Join Date
    43Posts

    Re: juver sourcee updated files

    Quote Originally Posted by pan0s View Post



    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



Page 2 of 41 FirstFirst 1234567891012 ... LastLast

Advertisement