mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
Add movement packed GUID, inventory money display, and character screen buttons
Fix movement packets to include packed player GUID prefix so the server tracks position. Fix inventory money display being clipped by child panels. Add Back and Delete Character buttons to character selection screen with two-step delete confirmation.
This commit is contained in:
parent
82e63fc95d
commit
fbeb14fc98
9 changed files with 156 additions and 15 deletions
|
|
@ -14,6 +14,7 @@ enum class Opcode : uint16_t {
|
|||
CMSG_AUTH_SESSION = 0x1ED,
|
||||
CMSG_CHAR_CREATE = 0x036,
|
||||
CMSG_CHAR_ENUM = 0x037,
|
||||
CMSG_CHAR_DELETE = 0x038,
|
||||
CMSG_PLAYER_LOGIN = 0x03D,
|
||||
|
||||
// ---- Movement ----
|
||||
|
|
@ -38,6 +39,7 @@ enum class Opcode : uint16_t {
|
|||
SMSG_AUTH_RESPONSE = 0x1EE,
|
||||
SMSG_CHAR_CREATE = 0x03A,
|
||||
SMSG_CHAR_ENUM = 0x03B,
|
||||
SMSG_CHAR_DELETE = 0x03C,
|
||||
SMSG_PONG = 0x1DD,
|
||||
SMSG_LOGIN_VERIFY_WORLD = 0x236,
|
||||
SMSG_ACCOUNT_DATA_TIMES = 0x209,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue