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