Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

189
Vistas
Bot reacts with nitro emojis that I don't have

node version 13

So can I make the bot reacts to message with nitro emojis that I don't have?if yup how

Here is my code:

const { MessageEmbed } = require("discord.js")

module.exports = (client) => {
    const suggestionChannel = client.channels.cache.get('898834097181437963') // Channel For Suggestion
    client.on('message', message => {
        if(message.channel === suggestionChannel) {
            if(message.author.bot) return // Does not Delete BOTs Messages
            message.delete() // Delete Original Message Sent By User

            const embed = new MessageEmbed()
            .setColor('#000000')
            .setTitle(`${message.author.tag} suggested something!`,  message.author.displayAvatarURL({ dynamic:true }))
            .setDescription(`**${message.content}**`)
            .setFooter('Vote if you agree/disagree!')
            message.channel.send({ embeds: [embed]}).then(message => { // Reactions
                message.react('emoji1') // Change Emoji
                message.react('emoji2') // Change Emoji
            })
        }
    })
}
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

As you said, you want to get animated emoji id so you can use it to react like with non-animated one, so:

  1. Open developer tools in Chrome
  2. Open the window with emoji, scroll emoji into view
  3. Enter element selector mode
  4. Click on the emoji
  5. Developer tools window should highlight an element that starts with <li role
  6. Element should have a drop-down arrow to the left of it, click on it to reveal its code
  7. You should now see <img... element. It should have a src="link" text. Right click on url and "Cipy link address".
  8. You will get something like: https://cdn.discord.com/emojis/emoji_id.png?v=1 Now you only need to copy this id and when you have both name and id use: message.react('<:emoji_name:emoji_id>') but if your emoji is .gif you have to use message.react('<a:emojiname:emojiid>') instead
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda