Skip to content

$guildBotCount

$guildBotCount will return the amount of Bots in your guild.

Usage

$guildBotCount[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberGuild ID of the guild you want to retrieve the amount of bots.false

Example(s)

This will return the amount of bots in your guild:

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