Skip to content

$editAppEmoji

$editAppEmoji will modify a specific application emoji.

Usage

$editAppEmoji[name;newName;returnEmoji?]

Parameters

FieldTypeDescriptionRequired
namestringThe name of the emoji.true
newNamestringThe new name of the emoji.true
returnEmoji?booleanReuturns the emoji.false

Example(s)

This will modify the given application emoji name from “leref” to “fafa”:

1
client.command({
2
name: "editAppEmoji",
3
code: `
4
$editAppEmoji[leref;fafa;false]
5
`
6
});