Edit on GitHub

GameService Server Mail Read Response

Summary

This packet contains the contents of a piece of mail.

This packet is a response to GameService Client 0x0144 Mail Read Request.

See Also: GameService Server 0x0211 Mailbox Response

Structure

gameservice_server_0212_mail_read_response

Name Type Summary
unknown_d bytes[4]
mail_id u4
mail_sender_user_nickname pstring
mail_date pstring Formatted as 'YYYY-MM-DD hh:ii:ss'
mail_body pstring
unknown_e bytes[1]
mail_attachment_count u4
mail_attachments mail_attachment[mail_attachment_count]

Subtypes

mail_attachment

Identical to GameService Server 0x0211 Mailbox Response.

Name Type Summary
unknown_a bytes[4]
item_id u4
unknown_b bytes[1]
item_quantity u4
unknown_c bytes[42]

Definition

meta:
  id: gameservice_server_0212_mail_read_response
  title: GameService Server Mail Read Response
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: unknown_d
    size: 4
  - id: mail_id
    type: u4
  - id: mail_sender_user_nickname
    type: pstring
  - id: mail_date
    type: pstring
  - id: mail_body
    type: pstring
  - id: unknown_e
    size: 1
  - id: mail_attachment_count
    type: u4
  - id: mail_attachments
    type: mail_attachment
    repeat: expr
    repeat-expr: mail_attachment_count
types:
  mail_attachment:
    seq:
      - id: unknown_a
        size: 4
      - id: item_id
        type: u4
      - id: unknown_b
        size: 1
      - id: item_quantity
        type: u4
      - id: unknown_c
        size: 42

Examples

No examples available. Contribute one?