Subversion Repositories WoWGM

Rev

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

#ifndef  _NETCLIENT_H_
#define  _NETCLIENT_H_

#include <Engine/Base/CDataStore.h>

/****************************************************************************
*
*       Memory addresses
*
***/
#define NETCLIENT__SEND 0x00632B50;


enum NETMESSAGE
{
        MSG_NULLACTION                          = 0x0,
        CMSG_BOOTME                                     = 0x1,
        CMSG_LEARN_SPELL                        = 0x10,
        CMSG_CREATEMONSTER                      = 0xFA,
        CMSG_MOVE_CHARACTER_CHEAT       = 0xD,
        SMSG_MOVE_CHARACTER_CHEAT       = 0xE,
        CMSG_RECHARGE                           = 0xF,
        CMSG_GODMODE                            = 0x22,
        CMSG_GM_RESURRECT                       = 0x22A,
        CMSG_SERVERINFO                         = 0x4F4,
        SMSG_SERVERINFO                         = 0x4F5
};


class NetClient
{

        public:

                static void Send(CDataStore* msg);

};

#endif // ifndef _NETCLIENT_H_