Skip to content

$allEmojisCount

$allEmojisCount will return the amount of emojis of a given type.

Usage

$allEmojisCount[type?]

Parameters

FieldTypeDescriptionRequired
type?stringType you want the amount of to be returned.false
Emoji Type
Animated Emojisanimated
Stable Emojisnormal

Example(s)

This will return the amount of emojis in your guild:

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