Edit on GitHub

GameService Server Lootbox Inventory_Update

Summary

This packet updates the relevant number of lootboxes and keys after having used some.

This is one of the responses to GameService Client 0x00EF Lootbox Open.

Structure

gameservice_server_00a7_lootbox_inventory_update

Name Type Summary
item_count u1
items item[item_count]

Subtypes

item

Name Type Summary
item_id u4 From pangya_xx.iff/Item.iff. Lootbox or key item ID.
inventory_slot u4
item_quantity u2 New quantity of item.

Definition

meta:
  id: gameservice_server_00a7_lootbox_inventory_update
  title: GameService Server Lootbox Inventory_Update
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: item_count
    type: u1
  - id: items
    type: item
    repeat: expr
    repeat-expr: item_count
types:
  item:
    seq:
      - id: item_id
        type: u4
      - id: inventory_slot
        type: u4
      - id: item_quantity
        type: u2

Examples

No examples available. Contribute one?