diff options
author | Stefan Dombrowski <stefan@uni-bonn.de> | 2011-05-30 23:15:34 +0200 |
---|---|---|
committer | Stefan Dombrowski <stefan@uni-bonn.de> | 2011-05-30 23:16:26 +0200 |
commit | 46f4b656eeced8947c31e1b9cf4f027954df1c2c (patch) | |
tree | 099a72d3698fc028356728d201c5752479779a54 /src/net/manaserv/manaserv_protocol.h | |
parent | 0248b2f58c783f21b7e68a20deadc0a3f942c869 (diff) | |
download | mana-46f4b656eeced8947c31e1b9cf4f027954df1c2c.tar.gz mana-46f4b656eeced8947c31e1b9cf4f027954df1c2c.tar.bz2 mana-46f4b656eeced8947c31e1b9cf4f027954df1c2c.tar.xz mana-46f4b656eeced8947c31e1b9cf4f027954df1c2c.zip |
Routing party invite through the map server
The player sends party invites to the game server.
If the invitee is within the visual range of the inviter, then
the game server forwards the invite to the chat server.
Reviewed-by: Bjorn, Jaxad0127
Diffstat (limited to 'src/net/manaserv/manaserv_protocol.h')
-rw-r--r-- | src/net/manaserv/manaserv_protocol.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/net/manaserv/manaserv_protocol.h b/src/net/manaserv/manaserv_protocol.h index 53dc07df..ca9a0f02 100644 --- a/src/net/manaserv/manaserv_protocol.h +++ b/src/net/manaserv/manaserv_protocol.h @@ -186,9 +186,11 @@ enum { CPMSG_GUILD_REJOIN = 0x0389, // S name, W guild, W rights, W channel, S announce // Party - PCMSG_PARTY_INVITE = 0x03A0, // S name - CPMSG_PARTY_INVITE_RESPONSE = 0x03A1, // B error, S name - CPMSG_PARTY_INVITED = 0x03A2, // S name + PGMSG_PARTY_INVITE = 0x03A0, // S name + GPMSG_PARTY_INVITE_ERROR = 0x03A1, // S name + GCMSG_PARTY_INVITE = 0x03A2, // S inviter, S invitee + CPMSG_PARTY_INVITE_RESPONSE = 0x03A3, // B error, S name + CPMSG_PARTY_INVITED = 0x03A4, // S name PCMSG_PARTY_ACCEPT_INVITE = 0x03A5, // S name CPMSG_PARTY_ACCEPT_INVITE_RESPONSE = 0x03A6, // B error, { S name } PCMSG_PARTY_REJECT_INVITE = 0x03A7, // S name |