Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 944 Bytes

usdemojicount.md

File metadata and controls

52 lines (38 loc) · 944 Bytes
description
Returns the amount of emojis in a guild where the bot is in.

$emojiCount

This function returns the amount of emojis in a guild

Raw usage: $emojiCount[type (optional);guildID (optional)]

Types:

  • all or empty field => returns total amount of custom emojis the bot has access to (animated and normal)
  • animated => returns amount of animated custom emojis
  • normal => returns amount of non-animated custom emojis

Total emoji count:

bot.command({
name: "emojiCount",
code: `$emojiCount emojis`
})

Animated Emojis:

bot.command({
name: "emojiCount",
code: `$emojiCount[animated] emojis`
})

normal Emojis:

bot.command({
name: "emojiCount",
code: `$emojiCount[normal] emojis`
})

Emoji count of another server:

bot.command({
name: "emojiCount",
code: `$emojiCount[all;740866341040291840] emojis`
})