Skip to content

$addClientReactions

$addClientReactions will add a reaction to the bot’s message.

Usage

$addClientReactions[...reactions]

Parameters

FieldTypeDescriptionRequired
reactionsstringReactions to add.true

Example(s)

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

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