Skip to content

$guildEmojis

$guildEmojis will return the emojis of a specific guild.

Usage

$guildEmojis[sep?;guildID?]

Parameters

FieldTypeDescriptionRequired
sep?stringThe separator to separate the returned emojis.false
guildID?numberThe ID of the guild.false

Example(s)

This will return the emojis of your guild:

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