Interface CollectJSONPacket

Sent to clients to broadcast a player has collected all their remaining items from the multi-world.

PrintJSONPacket for all possible PrintJSON packet subtypes.

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

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.