description |
---|
Returns the amount of emojis in a guild where the bot is in. |
This function returns the amount of emojis in a guild
Raw usage: $emojiCount[type (optional);guildID (optional)]
all
or empty field => returns total amount of custom emojis the bot has access to (animated and normal)animated
=> returns amount of animated custom emojisnormal
=> returns amount of non-animated custom emojis
bot.command({
name: "emojiCount",
code: `$emojiCount emojis`
})
bot.command({
name: "emojiCount",
code: `$emojiCount[animated] emojis`
})
bot.command({
name: "emojiCount",
code: `$emojiCount[normal] emojis`
})
bot.command({
name: "emojiCount",
code: `$emojiCount[all;740866341040291840] emojis`
})