Edit on GitHub

GameService Server Mail Unread List

Summary

This packet contains a list of unread messages in the mailbox.

This is one of the responses to GameService Client 0x0002 Hello / Login.

Structure

gameservice_server_0210_mail_unread_list

Name Type Summary
unknown_a bytes[4] Always 0x00.
message_count u2
messages message[message_count]

Subtypes

message

Name Type Summary
mail_id u4
user_nickname_sender strz[128]
unknown_a_message bytes[5]
attachment_count u4
attachments attachment[attachment_count]

attachment

Name Type Summary
unknown_a_attachment s4 All examples -1 (0xFFFFFFFF).
item_id_attachment u4 From pangya_xx.iff/Item.iff
unknown_b_attachment u1
item_quantity_attachment u4
unknown_c_attachment bytes[42]

Definition

meta:
  id: gameservice_server_0210_mail_unread_list
  title: GameService Server Mail Unread List
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: unknown_a
    size: 4
  - id: message_count
    type: u2
  - id: messages
    type: message
    repeat: expr
    repeat-expr: message_count
types:
  message:
    seq:
      - id: mail_id
        type: u4
      - id: user_nickname_sender
        type: strz
        size: 128
      - id: unknown_a_message
        size: 5
      - id: attachment_count
        type: u4
      - id: attachments
        type: attachment
        repeat: expr
        repeat-expr: attachment_count
  attachment:
    seq:
      - id: unknown_a_attachment
        type: s4
      - id: item_id_attachment
        type: u4
      - id: unknown_b_attachment
        type: u1
      - id: item_quantity_attachment
        type: u4
      - id: unknown_c_attachment
        size: 42

Examples

No examples available. Contribute one?