$addCmdReactions

Adds reactions to the author's message.

Usage

$addCmdReactions[emoji(s);...]

This function has one param.

ParamDescriptionTypeRequired

emoji(s)

The emojis to react with.

String

Yes

Examples

Example #1

bot.commands.add({
    type: "basicCommand",
    name: "react",
    code: `$addCmdReactions[✔]`
})

Example #2

bot.commands.add({
    type: "basicCommand",
    name: "react",
    code: `$addCmdReactions[🎉;✔]`
})

Last updated