Skip to content

$createAppEmoji

$createAppEmoji will create an application emoji.

Usage

$createAppEmoji[name;url;returnEmoji?]

Parameters

FieldTypeDescriptionRequired
namestringThe name of the emoji.true
urlstringThe url to set as emoji.true
returnEmoji?booleanReturns the emoji.false

Example(s)

This will create an application emoji:

1
client.command({
2
name: "createAppEmoji",
3
code: `
4
$createAppEmoji[leref;https://cdn.discordapp.com/emojis/1010320053687832586.webp?size=96&quality=lossless;false]
5
`
6
});