I want it so that after my bot has sent an embed it adds a checkmark reaction
This is my code
client.on(‘interactionCreate’, (interaction) => {
if (!interaction.isChatInputCommand()) return;
// Features Command
if (interaction.commandName === 'host') {
const embed = new EmbedBuilder()
.setTitle('New lobby, queue up in 1 minute!')
.setColor('#FF0000')
.setFooter({ text: 'discord.gg/XzNV6bxf7R' })
.addFields(
{
name: 'VPN: Canada',
value: ' ',
inline: false,
},
{
name: 'React with ✅ If you will be there',
value: ' ',
inline: false,
},
{
name: 'Gamemode: Solo Showdown',
value: ' ',
inline: false,
},
{
name: 'Pin:',
value: ' ',
inline: false,
}
)
.setImage('bababababababababa');
interaction.reply({ embeds: });
}
});
nothing just help me write the code 🙂
New contributor
Nonox is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.