Edit on GitHub

GameService Server Inventory Slot Assign

Summary

This packet (apparently) assigns an inventory slot to new items, and updates current pang balance.

Structure

gameservice_server_00aa_inventory_slot_assign

Name Type Summary
item_count u2
items item[item_count]
balance_pang u4
unknown_a bytes[12]

Subtypes

item

Name Type Summary
item_id u4 From pangya_xx.iff/Item.iff.
inventory_slot u4
unknown_b bytes[3]
item_quantity u4
unknown_c bytes[23]

Definition

meta:
  id: gameservice_server_00aa_inventory_slot_assign
  title: GameService Server Inventory Slot Assign
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: item_count
    type: u2
  - id: items
    type: item
    repeat: expr
    repeat-expr: item_count
  - id: balance_pang
    type: u4
  - id: unknown_a
    size: 12
types:
  item:
    seq:
      - id: item_id
        type: u4
      - id: inventory_slot
        type: u4
      - id: unknown_b
        size: 3
      - id: item_quantity
        type: u4
      - id: unknown_c
        size: 23

Examples

No examples available. Contribute one?