Skip to content

$emojiCount

$emojiCount will return the emoji count of a guild.

Usage

$emojiCount[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberFrom where the emojis will be counted and returned of.false

Example(s)

This will return the emoji count of your guild:

1
client.command({
2
name: "emojiCount",
3
code: `
4
You have $emojiCount emojis in your guild!
5
`
6
});