Edit on GitHub

GameService Client Mail Send

Summary

This packet sends a letter to the mailbox of another user at the cost of 100 pang. Attachments can be added at a cost of 500 pang each, with a 100 pang discount for the first.

The response is GameService Server 0x0213 Mail Send Response.

Aliases:

Structure

gameservice_client_0145_mail_send

Name Type Summary
local_user_id u4 Sender's user ID
remote_user_id u4 Recipient's user ID
remote_user_name pstring Recipient's user name
unknown_a bytes[2] Possibly padding?
mail_body pstring The body of the message.
mail_cost u4 The pang cost to send this message.
unknown_b bytes[4]
unknown_c bytes[1]
inventory_id u4 Inventory ID of first attached item.
item_id u4 From pangya_xx.iff/Item.iff. Item ID of first attached item.
unknown_d bytes[47]

Definition

meta:
  id: gameservice_client_0145_mail_send
  title: GameService Client Mail Send
  encoding: ASCII
  endian: le
  imports:
    - ../../common/pstring
seq:
  - id: local_user_id
    type: u4
  - id: remote_user_id
    type: u4
  - id: remote_user_name
    type: pstring
  - id: unknown_a
    size: 2
  - id: mail_body
    type: pstring
  - id: mail_cost
    type: u4
  - id: unknown_b
    size: 4
  - id: unknown_c
    size: 1
  - id: inventory_id
    type: u4
  - id: item_id
    type: u4
  - id: unknown_d
    size: 47

Examples

No examples available. Contribute one?