-
Is it possible to send messages as emojis/custom emojis on the server? |
Beta Was this translation helpful? Give feedback.
Answered by
DeadLyBro
Sep 6, 2022
Replies: 1 comment 2 replies
-
You can try this; {
id()
let channelId = cid
// Send Custom Emoji
let sentMessage = await api.sendMessage(channelId, '<a:emojiname:123456789098765432>')
// add "a" if animated, ":emojiname:" is emoji's custom name, "123456789098765432" is emoji's id.
// Send Normal Emoji
let sentMessage = await api.sendMessage(channelId, ':emojiname:')
// or
let sentMessage = await api.sendMessage(channelId, '👍')
} Don't forget if you want to send custom emoji, you must have Discord Nitro. If there is another way idk! 👍 |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
toastyy00
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can try this;
Don't forget if you want to send custom emoji, you must have Discord Nitro. If there is another way idk! 👍