Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

juver sourcee updated files

Newbie Spellweaver
Joined
Sep 18, 2020
Messages
68
Reaction score
0
whats new?
- item mall
- classic ui
- live global ranking
- new in game user panel
- inventori lock features


link :
base client sagupan ran

Well, thanks.. I already test again.
 
Custom Title Activated
Loyal Member
Joined
Mar 24, 2011
Messages
1,632
Reaction score
145
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
 
Experienced Elementalist
Joined
May 28, 2020
Messages
237
Reaction score
91
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.
 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
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.
 
Newbie Spellweaver
Joined
Oct 28, 2020
Messages
42
Reaction score
10
agree with this. it's better to merge the other's features for now
 
Banned
Banned
Joined
Nov 6, 2020
Messages
113
Reaction score
21
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,

how did you fixed this?

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;
		}
	}
 
Newbie Spellweaver
Joined
Mar 8, 2019
Messages
83
Reaction score
41
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
 
Banned
Banned
Joined
Nov 6, 2020
Messages
113
Reaction score
21
not working
?
unknown - juver sourcee updated files - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
CAn Someone Upload Compatible gui .xml of Compatible Locker?...

I search into SAgupaan Client but it seems Locker gui is missing...

Thanks

It works fine, maybe you forgot to add its window. I just finish moving it from the one released by aizen00.
 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
ive done in source but when client open it has missing gui like INVEN_BUTTON_EQUIPMENT_LOCK, INVEN_BUTTON_EQUIPMENT_UNLOCK.

etc...

i already search in SAgupaan Client Gui but i can see it hmmmm...

Can you share your gui?

Thanks

You should check gameword/gameintext/_inner_equip_lock. Its been there the whole time.
 
Back
Top