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!

EP7 Classic Gameplay Source/Gui/Server Files/sQL db

Experienced Elementalist
Joined
Aug 19, 2011
Messages
216
Reaction score
16
always no connection help please



server files in vmware working properly
also turn off my firewall
same port to login and param

any suggestion guys ?
 
Junior Spellweaver
Joined
Nov 18, 2017
Messages
125
Reaction score
64
I assume you using old char creation..
open up your NewCreateCharPage.cpp

find this!!

void CNewCreateCharPage::CREATE_CHAR_PROCESS(){
CUIEditBox* pEditBox = m_pStylePage->GetEditBox();
if ( !pEditBox ) return;
if ( !pEditBox->GetEditLength() ) return;
CString strTemp = pEditBox->GetEditString ();
pEditBox->EndEdit();

if ( !CheckStringName ( strTemp ) )
{
pEditBox->ClearEdit();
return;
}

// fuckin uncomment this
/* if ( CRanFilter::GetInstance().NameFilter ( strTemp.GetString () ) )
{
DoModalOuter ( ID2GAMEEXTEXT("CHARACTER_BADNAME") );
return ;
}*/

DxLobyStage *pLobyStage = DxGlobalStage::GetInstance().GetLobyStage();
const GLCHAR_NEWINFO& sNEWINFO = pLobyStage->GetNewCharInfo ();
if ( sNEWINFO.CHECKVALID () )
{
CNetClient* pNetClient = DxGlobalStage::GetInstance().GetNetClient ();
pNetClient->SndCreateChaInfo
(
sNEWINFO.m_emIndex, /*ºÎ¼­*/
sNEWINFO.m_wSchool, /*Çб³*/
sNEWINFO.m_wFace, /*¾ó±¼*/
sNEWINFO.m_wHair, /*Çì¾î*/
sNEWINFO.m_wHairColor, /*Çì¾îÄ÷¯*/
sNEWINFO.m_wSex, /*¼ºº°*/
strTemp.GetString ()
);
// COuterInterface::GetInstance().HideGroup ( GetWndID () );
// COuterInterface::GetInstance().ShowGroupFocus ( SELECT_CHARACTER_PAGE );
}
m_bUseCancel = FALSE;
}

It should fix your problem,,
but it appear new problem,
your user can create character name using badname HA HA HA
but who cares you are not setting up official server, no problem on bad name!!!!
HA HA HA
 
Experienced Elementalist
Joined
Jun 29, 2010
Messages
221
Reaction score
14
I assume you using old char creation..
open up your NewCreateCharPage.cpp

find this!!

void CNewCreateCharPage::CREATE_CHAR_PROCESS(){
CUIEditBox* pEditBox = m_pStylePage->GetEditBox();
if ( !pEditBox ) return;
if ( !pEditBox->GetEditLength() ) return;
CString strTemp = pEditBox->GetEditString ();
pEditBox->EndEdit();

if ( !CheckStringName ( strTemp ) )
{
pEditBox->ClearEdit();
return;
}

// fuckin uncomment this
/* if ( CRanFilter::GetInstance().NameFilter ( strTemp.GetString () ) )
{
DoModalOuter ( ID2GAMEEXTEXT("CHARACTER_BADNAME") );
return ;
}*/

DxLobyStage *pLobyStage = DxGlobalStage::GetInstance().GetLobyStage();
const GLCHAR_NEWINFO& sNEWINFO = pLobyStage->GetNewCharInfo ();
if ( sNEWINFO.CHECKVALID () )
{
CNetClient* pNetClient = DxGlobalStage::GetInstance().GetNetClient ();
pNetClient->SndCreateChaInfo
(
sNEWINFO.m_emIndex, /*ºÎ¼­*/
sNEWINFO.m_wSchool, /*Çб³*/
sNEWINFO.m_wFace, /*¾ó±¼*/
sNEWINFO.m_wHair, /*Çì¾î*/
sNEWINFO.m_wHairColor, /*Çì¾îÄ÷¯*/
sNEWINFO.m_wSex, /*¼ºº°*/
strTemp.GetString ()
);
// COuterInterface::GetInstance().HideGroup ( GetWndID () );
// COuterInterface::GetInstance().ShowGroupFocus ( SELECT_CHARACTER_PAGE );
}
m_bUseCancel = FALSE;
}

It should fix your problem,,
but it appear new problem,
your user can create character name using badname HA HA HA
but who cares you are not setting up official server, no problem on bad name!!!!
HA HA HA

I think it needs a working ranuser/ranshop/ranlog lol.. do you mind sharing yours idol?Rebel92

ERRO THE SAME: DAMN
 
Junior Spellweaver
Joined
Nov 18, 2017
Messages
125
Reaction score
64
I think it needs a working ranuser/ranshop/ranlog lol.. do you mind sharing yours idol?@Rebel92

ERRO THE SAME: DAMN


if still error, try to rebuild using releaseKorea/China
is that jolin source??
 
Experienced Elementalist
Joined
Jun 29, 2010
Messages
221
Reaction score
14
@Rebel92


release china/korea has to many error idol.


I think there is no solution in this release.

anyone successfully apply this via VMware test?

anyone can share their success??
 
Skilled Illusionist
Joined
Apr 17, 2012
Messages
348
Reaction score
29
"Name not available" error is caused by not having a compatible rangame1 database.

If you can't find a compatible database on these release, try to create a compatible one. You have the source, you can add missing tables on your rangame1 database to make it compatible =)
 
Skilled Illusionist
Joined
Jul 13, 2016
Messages
331
Reaction score
11
Re: EP7 Classic Gameplay Source/Gui

Sorry i can't wait for 30 Minutes to reply Crossbows :( can you please help me where to adjust the tower progress to kill faster? where will i change it on source code?
 
Junior Spellweaver
Joined
May 10, 2014
Messages
140
Reaction score
9


who solve this not responding game client when login. also please reupload rebel db deadlinks thanks
how to enable the ingame features/ autopilot slot/ item reg.
what build release or release_a?-




- - Updated - - -
 
Last edited:
Back
Top