Interface ItemCheatJSONPacket
interface ItemCheatJSONPacket {
cmd: "PrintJSON";
data: JSONMessagePart[];
item: NetworkItem;
receiving: number;
team: number;
type: "ItemCheat";
}
cmd: "PrintJSON";
data: JSONMessagePart[];
item: NetworkItem;
receiving: number;
team: number;
type: "ItemCheat";
}
Properties
Readonly
cmd
cmd
Readonly
data
All the textual metadata for this packet.
Readonly
item
Source player's identifier, location identifier, item identifier and item flags.
Readonly
receiving
receiving: number
Destination player's identifier.
Readonly
team
team: number
Team of the triggering player.
Readonly
type
type
The PrintJSONPacket subtype.
Sent to clients to broadcast a player has received a cheated item (via
!getitem
).See
PrintJSONPacket for all possible
PrintJSON
packet subtypes.