Edit on GitHub

GameService Server Treasure Point Result

Summary

This packet contains the result of the Treasure Point mechanism that gives away items at the end of games.

In matches, this will include all users' items mixed together (which allows the UI to show greyed-out items that have been awarded to other players). In tournaments, where every player has their own treasure point meter, only the local user's winnings are included.

It is only sent when there is at least one item to award to someone.

It is part of the response to:

See Also:

Structure

gameservice_server_0133_treasure_point_result

Name Type Summary
treasure_count u1
treasure_list treasure[treasure_count]

Subtypes

treasure

Name Type Summary
user_id u4
item_id u4
item_quantity u2
unknown_a bytes[1]

Definition

meta:
  id: gameservice_server_0133_treasure_point_result
  title: GameService Server Treasure Point Result
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: treasure_count
    type: u1
  - id: treasure_list
    type: treasure
    repeat: expr
    repeat-expr: treasure_count
types:
  treasure:
    seq:
      - id: user_id
        type: u4
      - id: item_id
        type: u4
      - id: item_quantity
        type: u2
      - id: unknown_a
        size: 1

Examples

No examples available. Contribute one?