Edit on GitHub

GameService Server User Shop Inventory

Summary

This packet is sent after being requested by GameService Client 0x0077 User Shop Inventory Request. It contains the inventory of a user's shop set up within a lounge room.

Structure

gameservice_server_00e6_user_shop_inventory

Name Type Summary
unknown_a u4
unknown_b u4
user_nickname strz Shop owner's nickname.
shop_name pstring
user_id u4 Shop owner's user ID.
shop_item_count u4
shop_items shop_item

Subtypes

shop_item

Name Type Summary
shop_item_index u4 Increments from $00 to $05.
item_id u4 From pangya_xx.iff/Item.iff, /Card.iff, etc.
unknown_c u4
shop_item_quantity u4
unknown_e bytes
shop_item_cost u4
unknown_f bytes
unknown_g bytes Some sort of user ID perhaps?
unknown_h bytes

Definition

meta:
  id: gameservice_server_00e6_user_shop_inventory
  title: GameService Server User Shop Inventory
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: unknown_a
    type: u4
  - id: unknown_b
    type: u4
  - id: user_nickname
    type: strz
    size: 22
  - id: shop_name
    type: pstring
  - id: user_id
    type: u4
  - id: shop_item_count
    type: u4
  - id: shop_items
    type: shop_item
    repeat: expr
    repeat-expr: shop_item_count
types:
  shop_item:
    seq:
      - id: shop_item_index
        type: u4
      - id: item_id
        type: u4
      - id: unknown_c
        type: u4
      - id: shop_item_quantity
        type: u4
      - id: unknown_e
        size: 3
      - id: shop_item_cost
        type: u4
      - id: unknown_f
        size: 20
      - id: unknown_g
        size: 9
      - id: unknown_h
        size: 121

Examples

No examples available. Contribute one?