diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-12 19:39:32 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-07-12 19:39:32 +0000 |
commit | 038388c2d1aeab8d653a8129e5ff95b4c83b2f88 (patch) | |
tree | ef09cb1870f60195fd316f4f5cf32c0d370035dd /src/net/protocol.h | |
parent | 12357db93c457675381c53caae226c900db07c8d (diff) | |
download | mana-038388c2d1aeab8d653a8129e5ff95b4c83b2f88.tar.gz mana-038388c2d1aeab8d653a8129e5ff95b4c83b2f88.tar.bz2 mana-038388c2d1aeab8d653a8129e5ff95b4c83b2f88.tar.xz mana-038388c2d1aeab8d653a8129e5ff95b4c83b2f88.zip |
Added support for visible equipment.
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r-- | src/net/protocol.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h index b5dc2996..ba16e99d 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -163,10 +163,11 @@ enum { GPMSG_INVENTORY_FULL = 0x0121, // { B slot, W item id [, B amount] }* GPMSG_PLAYER_ATTRIBUTE_UPDATE = 0x0130, // { W attribute, W value }* GPMSG_BEING_ENTER = 0x0200, // B type, W being id, B action, W*2 position - // player: S name, B hair style, B hair color, B gender + // player: S name, B hair style, B hair color, B gender, W weapon, W hat, W top clothes, W bottom clothes // monster: W type id GPMSG_BEING_LEAVE = 0x0201, // W being id GPMSG_ITEM_APPEAR = 0x0202, // W item id, W*2 position + GPMSG_BEING_LOOKS_CHANGE = 0x0210, // W weapon, W hat, W top clothes, W bottom clothes PGMSG_WALK = 0x0260, // W*2 destination PGMSG_ACTION_CHANGE = 0x0270, // B Action GPMSG_BEING_ACTION_CHANGE = 0x0271, // W being id, B action |