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!

Account Server sources (C++)

Status
Not open for further replies.
Goodbye
Loyal Member
Joined
Oct 6, 2009
Messages
965
Reaction score
134
Here are what seems to be the accountserver sources in C++. I don't know which server version that is.

I didn't have a thorough look on them but in a quick check I saw this in "Functions.h" which looks veeeery promising:

Code:
#ifndef	_ACCOUNTSVR_FUNCTIONS_H_
#define	_ACCOUNTSVR_FUNCTIONS_H_

// gate server to zone server msg proc func
extern	void	Func_G2S_SVR_LOGIN(MSG_G2S_SVR_LOGIN * pMsg, BYTE iIndex);
extern	void	Func_G2S_NEW_CLIENT(MSG_G2S_NEW_CLIENT * pMsg, BYTE iGate);
extern	void	Func_G2S_DISCONNECT(MSG_G2S_DISCONNECT * pMsg, BYTE iGate);

// main server to zone server msg proc func
extern	void	Func_M2S_ERROR(MSG_M2S_ERROR * pMsg);

// client to account server msg proc func
extern	void	Func_C2S_CHAR_LOGIN(MSG_C2S_CHAR_LOGIN * pMsg, BYTE iGate);
extern	void	Func_C2S_ASK_CREATE_PLAYER(MSG_C2S_ASK_CREATE_PLAYER * pMsg, BYTE iGate);
extern	void	Func_C2S_ASK_DELETE_PLAYER(MSG_C2S_ASK_DELETE_PLAYER * pMsg, BYTE iGate);

// main server to account server msg proc func
extern	void	Func_M2S_CHAR_LOGIN(MSG_M2S_CHAR_LOGIN * pMsg);
extern	void	Func_M2S_CHAR_UPDATE(MSG_M2S_CHAR_UPDATE * pMsg);
extern	void	Func_M2S_ANS_CREATE_PLAYER(MSG_M2S_ANS_CREATE_PLAYER * pMsg);
extern	void	Func_M2S_ANS_DELETE_PLAYER(MSG_M2S_ANS_DELETE_PLAYER * pMsg);

#endif

Maybe someone might find this useful.

Enjoy hacking guys.
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Jan 6, 2011
Messages
293
Reaction score
6
wht we do with this rar ?
Chriss or any1 else explain in details ??
 
Junior Spellweaver
Joined
Nov 13, 2006
Messages
174
Reaction score
0
This source released long time back (2002) in chines forum and this an old 1.20 account server but this can help you to understand the account server system this program write in Microsoft Visual C++ 6.0 just you have to get some files from your new account server may they can help you for compiling the account server if you you have 1.20 account server files then it may easy to compile the server.
 
Newbie Spellweaver
Joined
Feb 19, 2011
Messages
5
Reaction score
0
do you have any other sources file of A3 server except this old one?
 
Status
Not open for further replies.
Back
Top