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 source+database+cfg (soon latest GS source)

Elite Diviner
Joined
Jul 8, 2015
Messages
489
Reaction score
27
Re: Juver ที่มา+ฐานข้อมูล+cfg (เร็ว ๆ นี้แหล่ง GS ล่าสุด)

i mean command in juver bro that command can't use in juver do u know how to use that command ?in saw it in dxcommand but no idea to use
 
Junior Spellweaver
Joined
Apr 30, 2015
Messages
152
Reaction score
2
Anyone can help me im getting this error when i try to login

ERROR:MsgLogIn Not Correct Encrypt UserID : gtclover031 ERROR:DecreaseChannelUser Channel Number Wrong(-1) ERROR:CNetUser::CloseClient client already closed 0
 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
Anyone using rcc config for this file? Does your glogicserver.rcc loaded correctly?
Im using emulator but it keep saying period.ini open fail :v.
 
Experienced Elementalist
Joined
Aug 13, 2007
Messages
210
Reaction score
14
Anyone using rcc config for this file? Does your glogicserver.rcc loaded correctly?
Im using emulator but it keep saying period.ini open fail :v.
extract glogicserver.rcc
 
Skilled Illusionist
Joined
Jan 27, 2009
Messages
368
Reaction score
23
Anyone using rcc config for this file? Does your glogicserver.rcc loaded correctly?
Im using emulator but it keep saying period.ini open fail :v.
Already shared the glogicserver.rcc that is working with rcc config. use it without period.ini error
 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
Already shared the glogicserver.rcc that is working with rcc config. use it without period.ini error
Tried @pan0s glogicserver.rcc and still not working, mind sharing yours? Im using source from data-th forum.

EDIT:
Encrypt using CryptTool and it works, thanks.
 
Skilled Illusionist
Joined
Jan 27, 2009
Messages
368
Reaction score
23
I revert back from plaintext login to md5 hash. but it failed. any tips.?
RANPARAM::bFeatureRegisterUseMD5



EDIT:
Encrypt using CryptTool and it works, thanks.
I tried that Cryptool also but idk why it doesn't work for me. Maybe I miss something. hehe
 
Elite Diviner
Joined
Jul 8, 2015
Messages
489
Reaction score
27
can you chage EN EN2 END ? Wouldn't it be about another encrypt ? .x wld and gui ? im add encrypt and still use CryptionRCC it working fine same as source form that forum
 
Newbie Spellweaver
Joined
Oct 1, 2019
Messages
90
Reaction score
54
13 - Juver source+database+cfg (soon latest GS source) - RaGEZONE Forums

How to fix?
 

Attachments

You must be registered for see attachments list
Skilled Illusionist
Joined
Jan 27, 2009
Messages
368
Reaction score
23
can you chage EN EN2 END ? Wouldn't it be about another encrypt ? .x wld and gui ? im add encrypt and still use CryptionRCC it working fine same as source form that forum
Can you verify that your rcc encrytion is working using crytionrcc? Because mine doesn't work.
 
Elite Diviner
Joined
Jul 8, 2015
Messages
489
Reaction score
27
im use encrypt rcc to play with minia and not use rcc with run server
 
Experienced Elementalist
Joined
Mar 23, 2013
Messages
244
Reaction score
6
anyone experience fieldserver suddend force close without showing bugtrap error

RCB1 and 51F is already disabled
 
Last edited:
Newbie Spellweaver
Joined
Mar 1, 2021
Messages
8
Reaction score
0
Hi Anyone fix this?

when i try it on emulator it says "Success" but the point not accurately adding in Character stats

 
Banned
Banned
Joined
Aug 26, 2016
Messages
336
Reaction score
19
I revert back from plaintext login to md5 hash. but it failed. any tips.?
RANPARAM::bFeatureRegisterUseMD5




I tried that Cryptool also but idk why it doesn't work for me. Maybe I miss something. hehe

Never tried setting up in vps for now but last time I check, all works.

can you chage EN EN2 END ? Wouldn't it be about another encrypt ? .x wld and gui ? im add encrypt and still use CryptionRCC it working fine same as source form that forum

Only inside rcc need to be encrypt if you change EN EN2 END, for xml gui, they have different encryption, you can change it too.
 
Junior Spellweaver
Joined
May 10, 2014
Messages
140
Reaction score
9
here is a way to read the rcc files.
**need use gameclient.exe to run the game**

gameemulatorview.cpp
find:
Code:
cgameemulatorview::cgameemulatorview()
    : Cd3dapplication()
    , m_bcreated(false)
    , m_hcursordefault(null)
{
    m_busedepthbuffer    = true;
    scharacter = scharset();
}

replace to:

Code:
cgameemulatorview::cgameemulatorview()
    : Cd3dapplication()
    , m_bcreated(false)
    , m_hcursordefault(null)
{
    m_busedepthbuffer    = true;
    scharacter = scharset();

    // siumoon: Use the rcc file by default.
    Glogic::bglogic_packfile = false;
    glogic::bglogic_zipfile = true;
    glogic::benglib_zipfile = true;
}

-----------
serveragent.cpp / serverfield.cpp / serverlogin.cpp / serversession.cpp
find:

Code:
    bool brcc = false;

    for ( int i=0; i<strcmdarray.getcount(); i++ )
    {
        cstring strtemp = strcmdarray.getat(i);

        if ( strtemp == "use_rcc" || strtemp == "use_rcc" )
        {
            brcc = true;
        }
    }

    //rcc initialize
    glogic::bglogic_packfile = false;
    glogic::bglogic_zipfile = false;
    glogic::benglib_zipfile = false;

    if ( brcc )
    {
        glogic::bglogic_packfile = false;
        glogic::bglogic_zipfile = true;
        glogic::benglib_zipfile = true;
    }

replace to:

Code:
    bool brcc = true; // siumoon: Use the rcc file by default.

    For ( int i=0; i<strcmdarray.getcount(); i++ )
    {
        cstring strtemp = strcmdarray.getat(i);

        if ( strtemp == "not_use_rcc" || strtemp == "not_use_rcc" )
        {
            brcc = false;
        }
    }

    //rcc initialize
    glogic::bglogic_packfile = false;
    glogic::bglogic_zipfile = true;
    glogic::benglib_zipfile = true;

    if ( !brcc )
    {
        glogic::bglogic_packfile = false;
        glogic::bglogic_zipfile = false;
        glogic::benglib_zipfile = false;
    }
-----------
gameclient.cpp
find:

Code:
    bool brcc = false;

    for ( int i=0; i<strcmdarray.getcount(); i++ )
    {
        cstring strtemp = strcmdarray.getat(i);

        /*if ( strtemp == "app_run" )
        {
            bapm = true;
        }*/

        if ( strtemp == "use_rcc" || strtemp == "use_rcc" )
        {
            brcc = true;
        }

replace to:

Code:
    bool brcc = true; // siumoon: Use the rcc file by default.

    For ( int i=0; i<strcmdarray.getcount(); i++ )
    {
        cstring strtemp = strcmdarray.getat(i);

        /*if ( strtemp == "app_run" )
        {
            bapm = true;
        }*/

        if ( strtemp == "not_use_rcc" || strtemp == "not_use_rcc" )
        {
            brcc = false;
        }



help i tried this but always d3d error
 
Back
Top