MessagePrivate

class MessagePrivate(val name: String, val message: String) : IncomingGameMessage

Message private events are sent when a player writes a private message to the target player. The server is responsible for looking up the target player and forwarding the message to them, if possible.

Constructors

Link copied to clipboard
constructor(name: String, message: String)

Properties

Link copied to clipboard
open override val category: ClientProtCategory
Link copied to clipboard

the message forwarded to the recipient

Link copied to clipboard

the name of the recipient of this private message

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String