Interface CountdownJSONPacket
interface CountdownJSONPacket {
cmd: "PrintJSON";
countdown: number;
data: JSONMessagePart[];
type: "Countdown";
}
cmd: "PrintJSON";
countdown: number;
data: JSONMessagePart[];
type: "Countdown";
}
Properties
Readonlycmd
cmd
Readonlycountdown
countdown: number
Amount of seconds remaining on the countdown.
Readonlydata
All the textual metadata for this packet.
Readonlytype
type
The PrintJSONPacket subtype.
Sent to clients to broadcast a countdown message, usually for counting down the start of a game.
See
PrintJSONPacket for all possible
PrintJSONpacket subtypes.