Edit on GitHub

GameService Server Treasure Hunter Info

Summary

This packet contains the treasure hunter bar value for all courses visible while selecting the course.

This is a response to Gameservice Client 0x0002 Hello / Login, but it also apparently sent automatically at the top of the hour.

Structure

gameservice_server_treasure_hunter_info

Name Type Summary
unknown_a u1
entry_count u1
entries entry[entry_count]

Subtypes

entry

Name Type Summary
course_id u1 The course_id
entry_value u4 The treasure hunter value, based on some empirical tests the minimum value to display anything is 720 and the maximum is 1000.

Definition

meta:
  id: gameservice_server_treasure_hunter_info
  title: GameService Server Treasure Hunter Info
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: unknown_a
    type: u1
  - id: entry_count
    type: u1
  - id: entries
    type: entry
    repeat: expr
    repeat-expr: entry_count
types:
  entry:
    seq:
      - id: course_id
        type: u1
      - id: entry_value
        type: u4

Examples

No examples available. Contribute one?