$addClientReactions
$addClientReactions
will add a reaction to the bot’s message.
Usage
$addClientReactions[...reactions]
Parameters
Field | Type | Description | Required |
---|---|---|---|
reactions | string | Reactions to add. | true |
Example(s)
This will add the given emojis to the bot’s response (“Hello!”):
1client.command({2 name: "addClientReactions",3 code: `4 Hello!5 $addClientReactions[🧡;❤️]6 `7});