Subversion Repositories WoWGM

Rev

Rev 6 | Rev 15 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#ifndef  _NETCLIENT_H_
2
#define  _NETCLIENT_H_
3
 
4
#include <Engine/Base/CDataStore.h>
5
 
6
/****************************************************************************
7
*
8
*	Memory addresses
9
*
10
***/
11
#define NETCLIENT__SEND	0x00632B50;
12
 
13
 
14
enum NETMESSAGE
15
{
16
	MSG_NULLACTION				= 0x0,
17
	CMSG_BOOTME					= 0x1,
7 tristanc 18
	CMSG_LEARN_SPELL			= 0x10,
3 tristanc 19
	CMSG_CREATEMONSTER			= 0xFA,
20
	CMSG_MOVE_CHARACTER_CHEAT	= 0xD,
21
	SMSG_MOVE_CHARACTER_CHEAT	= 0xE,
22
	CMSG_RECHARGE				= 0xF,
23
	CMSG_GODMODE				= 0x22,
7 tristanc 24
	CMSG_GM_RESURRECT			= 0x22A,
25
	CMSG_SERVERINFO				= 0x4F4,
26
	SMSG_SERVERINFO				= 0x4F5
3 tristanc 27
};
28
 
29
 
30
class NetClient
31
{
32
 
33
	public:
34
 
35
		static void Send(CDataStore* msg);
36
 
37
};
38
 
39
#endif // ifndef _NETCLIENT_H_