diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-04-02 21:25:25 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-04-02 21:25:25 -0600 |
commit | 4916370e6130bfee7eb9ae486f03391d2214ecf4 (patch) | |
tree | 69311c3f543b538f4cd8e619d367d3ef22f6e43c /src/net/ea/protocol.h | |
parent | 22f19d7a201abe8f6df69b82ebd6dce55c3b1655 (diff) | |
download | mana-4916370e6130bfee7eb9ae486f03391d2214ecf4.tar.gz mana-4916370e6130bfee7eb9ae486f03391d2214ecf4.tar.bz2 mana-4916370e6130bfee7eb9ae486f03391d2214ecf4.tar.xz mana-4916370e6130bfee7eb9ae486f03391d2214ecf4.zip |
Make eAthena's CharHandler
Also add ping to MapHandler and fill in eAthena's MapHandler's connect
method.
Diffstat (limited to 'src/net/ea/protocol.h')
-rw-r--r-- | src/net/ea/protocol.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/ea/protocol.h b/src/net/ea/protocol.h index 356b34a4..4dc7db36 100644 --- a/src/net/ea/protocol.h +++ b/src/net/ea/protocol.h @@ -122,6 +122,11 @@ static const int STORAGE_OFFSET = 1; /********************************** * Packets from client to server * **********************************/ +#define CMSG_CHAR_SELECT 0x0066 +#define CMSG_CHAR_CREATE 0x0067 +#define CMSG_CHAR_DELETE 0x0068 + +#define CMSG_MAP_SERVER_CONNECT 0x0072 #define CMSG_CLIENT_PING 0x007e /**< Send to server with tick */ #define CMSG_CLIENT_QUIT 0x018A #define CMSG_TRADE_RESPONSE 0x00e6 |