$allEmojisCount
$allEmojisCount
will return the amount of emojis of a given type.
Usage
$allEmojisCount[type?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
type? | string | Type you want the amount of to be returned. | false |
Emoji Type | |
---|---|
Animated Emojis | animated |
Stable Emojis | normal |
Example(s)
This will return the amount of emojis in your guild:
1client.command({2 name: "allEmojisCount",3 code: `4 $allEmojisCount5 `6});