Skip to content

$guildShardPing

$guildShardPing will return the latency of a specific shard.

Usage

$guildShardPing[shardId?]

Parameters

FieldTypeDescriptionRequired
shardId?numberThe shard ID.false

Example(s)

This will return the shard latency of the current shard:

1
client.command({
2
name: "guildShardPing",
3
code: `
4
$guildShardPing[$shardId]MS
5
`
6
});