Skip to content

$addCmdReactions

$addCmdReactions will react with given emojis to the author’s message.

Usage

$addCmdReactions[...reactions]

Parameters

FieldTypeDescriptionRequired
reactionsstringReactions to add.true

Example(s)

This will add the given emojis to the author’s response (“Hello!”):

1
client.command({
2
name: "addCmdReactions",
3
code: `
4
Hello!
5
$addCmdReactions[🧡;❤]
6
`
7
});