Skip to content

$modifyEmoji

$modifyEmoji will modify a given custom emoji.

Usage

$modifyEmoji[guildID;emojiID;name;...roles?]

Parameters

FieldTypeDescriptionRequired
guildIDnumberThe ID of the guild of where the emoji is located in.true
emojiIDnumberThe Emoji ID.true
namestringThe new emoji name.true
…roles?numberRoles that will be able to use that emoji.false

Example(s)

This will edit a existing emoji / change its name to “Example”:

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