-
{
id()
let guildId = gid
let channelId = cid
let messageId = '99420081234567890'
// Get the list of server custom emojis
let emojisCustom = await api.listEmojis(gid).then(emojis => emojis.map(emoji => ({ ...emoji, url: `${emoji.name}:${emoji.id}` })))
// Add 🤔 emoji
await api.addReaction(channelId, messageId, '🤔')
await delay(500)
// Add `monkas` emoji
let monkasEmoji = emojisCustom.find(x => x.name === 'monkas')
await api.addReaction(channelId, messageId, monkasEmoji.url)
} |
Beta Was this translation helpful? Give feedback.
-
How about add reaction to all messages on specific channel with all reaction that have been reacted before? |
Beta Was this translation helpful? Give feedback.
-
Is there a way to react with multiple emoji from a specific user? As in, all previous messages (or up to a point). |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
is it possible to react on specific message with specific emoji/reaction?
Beta Was this translation helpful? Give feedback.
All reactions