Interface PartJSONPacket

Sent to clients to broadcast a client has disconnected.

PrintJSONPacket for all possible PrintJSON packet subtypes.

interface PartJSONPacket {
    cmd: "PrintJSON";
    data: JSONMessagePart[];
    slot: number;
    team: number;
    type: "Part";
}

Properties

Properties

cmd

All the textual metadata for this packet.

slot: number

Slot of the triggering player.

team: number

Team of the triggering player.

type

The PrintJSONPacket subtype.