Replies: 3 comments 76 replies
-
{
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.
3 replies
Answer selected by
toastyy00
-
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.
57 replies
-
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.
16 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
is it possible to react on specific message with specific emoji/reaction?
Beta Was this translation helpful? Give feedback.
All reactions