Skip to content

$guildEmojiExists

$guildEmojiExists will check if the given emoji exists in the given guild.

Usage

$guildEmojiExists[emojiResolver;guildId?]

Parameters

FieldTypeDescriptionRequired
emojiResolverstringEmoji you want to check if it exists.true
guildID?numberID of the guild where the emoji exists.false

Example(s)

This will return true as the emoji exists:

1
client.command({
2
name: "guildEmojiExists",
3
code: `
4
$guildEmojiExists[<:LerefMoney:1003365344724910191>;$guildID]
5
`
6
});