mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 09:33:51 +00:00
Add /inspect command to view player equipment
- Add CMSG_INSPECT (0x114) and SMSG_INSPECT_RESULTS (0x115) opcodes - Implement InspectPacket builder for sending inspect requests - Add inspectTarget() method to GameHandler with validation - Add /inspect slash command in chat system - Validate target is a player before sending inspect request - Show helpful error messages for invalid inspect attempts - Display confirmation message when inspect request is sent
This commit is contained in:
parent
4da8c75af4
commit
8b8e32e716
6 changed files with 51 additions and 0 deletions
|
|
@ -166,6 +166,8 @@ enum class Opcode : uint16_t {
|
|||
CMSG_USE_ITEM = 0x00AB,
|
||||
CMSG_AUTOEQUIP_ITEM = 0x10A,
|
||||
SMSG_INVENTORY_CHANGE_FAILURE = 0x112,
|
||||
CMSG_INSPECT = 0x114,
|
||||
SMSG_INSPECT_RESULTS = 0x115,
|
||||
|
||||
// ---- Death/Respawn ----
|
||||
CMSG_REPOP_REQUEST = 0x015A,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue