Skip to content

$guildShard

$guildShard will return the guilds of a specific shard.

Usage

$guildShard[option?;sep?;shardId]

Parameters

FieldTypeDescriptionRequired
option?numberOption to return the guilds in
1. id (default)
2. name
false
sep?stringSeparator to separate multiple returned values.false
shardIdnumberThe shard ID.true

Example(s)

This will return the amount guilds of a shard:

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