$clearAllReactions
Removes all reactions from the provided message.
Usage
$clearAllReactions[channelID;messageID]
This function has two params.
Param
Description
Type
Required
channelID
The channel where message is located.
Snowflake
Yes
messageID
The message to remove reactions from.
Snowflake
Yes
Example
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$clearAllReactions[876920205526319144;904091144579850251]`
})
Before:
After:
Last updated
Was this helpful?