Interface ItemCheatJSONPacket

Sent to clients to broadcast a player has received a cheated item (via !getitem).

PrintJSONPacket for all possible PrintJSON packet subtypes.

interface ItemCheatJSONPacket {
    cmd: "PrintJSON";
    data: JSONMessagePart[];
    item: NetworkItem;
    receiving: number;
    team: number;
    type: "ItemCheat";
}

Properties

cmd

All the textual metadata for this packet.

Source player's identifier, location identifier, item identifier and item flags.

receiving: number

Destination player's identifier.

team: number

Team of the triggering player.

type

The PrintJSONPacket subtype.