Edit on GitHub
This packet commits any changes to the player's equipment.
The response is Gameservice Server 0x006B Equipment Response.
Aliases:
hsreina/pangya-server
: PLAYER_CHANGE_EQUIP
eantoniobr/UGPangya
: PLAYER_CHANGE_EQUIPMENTS
Name | Type | Summary |
---|---|---|
subtype | u1 | Type of message. |
payload | switch(subtype) | |
case 2
| equipment_update_02_consumables
| Case when subtype == 2
|
case 9
| equipment_update_09_unknown
| Case when subtype == 9
|
Name | Type | Summary |
---|---|---|
item_id | u4 | Always exactly 10 entries, corresponding to 10 consumable item slots in-game (no distinction between the 8 default slots and 2 unlockable slots). IDs from pangya_xx.iff/Item.iff. |
Name | Type | Summary |
---|---|---|
unknown_a | bytes |
meta:
id: gameservice_client_0020_equipment_update
title: GameService Client Equipment Update
encoding: ASCII
endian: le
imports:
- ../../common/pstring
seq:
- id: subtype
type: u1
- id: payload
type:
switch-on: subtype
cases:
2: equipment_update_02_consumables
9: equipment_update_09_unknown
types:
equipment_update_02_consumables:
seq:
- id: item_id
type: u4
repeat: expr
repeat-expr: 10
equipment_update_09_unknown:
seq:
- id: unknown_a
size: 20