description |
---|
Returns a Custom Emoji, from all Guilds. |
This function returns a custom emoji from any guild as long as the bot is in the guild
This function has 2 fields
- Emoji Name (Required)
- GuildID (Optional)
Raw Usage: $customEmoji[emoji name;$guildID (optional)]
- Emoji Name - The emoji the bot will return
- GuildID - the guild the emoji should be searched from
Without optional guildID field:
bot.command({
name: "emoji",
code: `
$customEmoji[logo]
`
})
With optional guildID field:
bot.command({
name: "emoji",
code: `
$customEmoji[logo;773352845738115102]
`
})