tell

fun tell(player: ServerPlayer, message: String)

Send a system message to a player.

Parameters

player

target ServerPlayer

message

plain string message


fun tell(player: ServerPlayer, message: Component)

Send a system message to a player.

Parameters

player

target ServerPlayer

message

message component


fun tell(player: ServerPlayer, message: Any)

Send a system message to a player.

Parameters

player

target ServerPlayer

message

message object, converted to string


fun tell(players: Collection<ServerPlayer>, message: String)

Send a system message to multiple players.

Parameters

players

target ServerPlayer collection

message

plain string message


fun tell(players: Collection<ServerPlayer>, message: Component)

Send a system message to multiple players.

Parameters

players

target ServerPlayer collection

message

message component


fun tell(players: Collection<ServerPlayer>, message: Any)

Send a system message to multiple players.

Parameters

players

target ServerPlayer collection

message

message object, converted to string


fun tell(message: Any)

Send a system message to all players.

Parameters

message

message object, converted to string