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!

Neo Source

Junior Spellweaver
Joined
Jul 21, 2013
Messages
105
Reaction score
0
@Fusion 7 Can you share your glogicserver ? please :(
 
be good to beat evils
Loyal Member
Joined
Mar 27, 2008
Messages
1,027
Reaction score
292
disconnected"?

int ConnectLoginServer(const char *szAddress, UINT nPort=RANPARAM::nPort);

add line in param.ini

nPort = any port number same as login config (server)
 
Junior Spellweaver
Joined
Jul 21, 2013
Messages
105
Reaction score
0
Sorry For Being Newbie Sir Because My Os Is Sp3 Cause I Cant Install VS 2003 Pro
 
Junior Spellweaver
Joined
Jul 21, 2013
Messages
105
Reaction score
0
Can You Link VS 2003 ?

Why Skill Editor Takes Long Long Long Long Time To Load Skill.ssf ?
 
Newbie Spellweaver
Joined
Mar 10, 2013
Messages
16
Reaction score
1
Good document, but there are still many problems waiting for a solution.

new - Neo Source - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Dec 30, 2012
Messages
8
Reaction score
0
Can You Link VS 2003 ?

Why Skill Editor Takes Long Long Long Long Time To Load Skill.ssf ?

use Ran_Crypt
VS 2003 search in 4shared
 
Joined
Jun 20, 2010
Messages
693
Reaction score
103
any body encounter this problem...?
raffy0809 - Neo Source - RaGEZONE Forums

some info:
I'm using my own compile file and Im encounter this error.. and download Sir ramispo share but still no luck.. test running the server
check list:
using neo cfg
OBDC check
firewall/anti-virus check
'
.
.
.
.
never mine problem solve

like BDO said..

we find way...

^^
 

Attachments

You must be registered for see attachments list
Last edited:
QT is better than VS
Joined
Jul 29, 2009
Messages
908
Reaction score
389
LOL liferan isnt using this source okay ? why not stick to your own development :D
 
Newbie Spellweaver
Joined
Oct 2, 2012
Messages
43
Reaction score
8
Please shared complete gui. Gui me not have Pet Windows and Vehicle Windows ETC. TT

Sorry I'm bad english. :(:
 
Junior Spellweaver
Joined
Nov 24, 2013
Messages
106
Reaction score
17
please share the working " GUI " and " Comment.ini " i try to use the two files from needed files in source same not compatible

see my testing result

ke05lZ3 - Neo Source - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Ì lövê ¥öµ!
Loyal Member
Joined
Jun 2, 2009
Messages
1,885
Reaction score
211
lol.
where skill 237.? i see 217 only.

mine got 237..can u check properly??

please share the working " GUI " and " Comment.ini " i try to use the two files from needed files in source same not compatible

see my testing result

ke05lZ3 - Neo Source - RaGEZONE Forums

get the gui and comment.ini on source.rar.. folder "needed files"
 

Attachments

You must be registered for see attachments list
Joined
May 26, 2013
Messages
414
Reaction score
24
Open this file for CFG. at will change you.
Code:
SC/netserverLib/s_CServer.cpp
SC/netserverLib/s_CServer.h
SC/netserverLib/s_CAgentServer.cpp
SC/netserverLib/s_CFieldServer.cpp
SC/netserverLib/s_CLoginServer.cpp
SC/netserverLib/s_CSessionServer.cpp

Example:
s_CServer.cpp
    nRetCode = CCfg::GetInstance()->Load(_T("Session.cfg"));
    nRetCode = CCfg::GetInstance()->Load(_T("Login.cfg"));
    nRetCode = CCfg::GetInstance()->Load(_T("Field.cfg"));
    nRetCode = CCfg::GetInstance()->Load(_T("Agent.cfg"));
s_CServer.h
    int    SessionStartCfg();
    int    LoginStartCfg();
    int    FieldStartCfg();
    int    AgentStartCfg();
s_CAgentServer.cpp
    if (AgentStartCfg() == NET_ERROR) return NET_ERROR;
s_CFieldServer.cpp
    if (FieldStartCfg()    == NET_ERROR) return NET_ERROR;
s_CLoginServer.cpp
    if (FieldStartCfg()    == NET_ERROR) return NET_ERROR;
s_CSessionServer.cpp
    if (SessionStartCfg()    == NET_ERROR) return NET_ERROR;    

    
if you want or follow Param.ini want to use Port.
SC/MfcExLib/
RANPARAM.cpp
RANPARAM.h
remove or use Port
    UINT                nPort                = MAX_NPORT;
-> end etc

SC/netclientLib
s_NetClient.cpp
    int CNetClient::ConnectLoginServer( const char *szAddress, UINT nPort)    // use port in param
    int CNetClient::ConnectLoginServer( const char *szAddress, int nPort)    // use port in server/cfg files
s_NetClient.h
    int        ConnectLoginServer(const char *szAddress, UINT nPort=RANPARAM::nPort);    // use port in param
    int        ConnectLoginServer(const char *szAddress, int nPort=6001);    // use port in server/cfg files

sorry, for a very bad english.
 
Junior Spellweaver
Joined
Nov 24, 2013
Messages
106
Reaction score
17
mine got 237..can u check properly??



get the gui and comment.ini on source.rar.. folder "needed files"

read my post sir :) i said i use the two files from Needed File in Source "Gui and Comment.ini "its same error will pop up

raffy0809 - Neo Source - RaGEZONE Forums
 
Back
Top