Edit on GitHub

GameService Server Quest Status Response

Summary

This packet appears to detail the user's quests.

This is one of the responses to GameService Client 0x0151 Quest Status Request.

Structure

gameservice_server_0225_quest_status_response

Name Type Summary
status_code u4 If non-zero, contains an error code. The remainder of the packet is discarded.
quest_expiry_unix_time u4 Timestamp of (presumably) when the active quests will expire.
quest_started_unix_time u4 Timestamp of when the active quests were started.
quest_count u4
quest_id u4 From pangya_xx.iff/Quest.iff.
quest_slot_count u4
quest_status_slot u4 See [GameService Server 0x0216 User Status Update](/packets/gameservice/server/0216.ksy).

Definition

meta:
  id: gameservice_server_0225_quest_status_response
  title: GameService Server Quest Status Response
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: status_code
    type: u4
  - id: quest_expiry_unix_time
    type: u4
  - id: quest_started_unix_time
    type: u4
  - id: quest_count
    type: u4
  - id: quest_id
    type: u4
    repeat: expr
    repeat-expr: quest_count
  - id: quest_slot_count
    type: u4
  - id: quest_status_slot
    type: u4
    repeat: expr
    repeat-expr: quest_slot_count

Examples

No examples available. Contribute one?