Как я могу встроить ответ бота? discord.js

#discord #discord.js

Вопрос:

Я сделал команду «funnyrate», которая отлично работает. Однако я думаю, что было бы лучше, если бы ответ бота был встроен. может кто-нибудь помочь мне встроить ответы ботов? вот код:

 module.exports.run = async (bot, message, args) => {
  var rating = Math.floor(Math.random() * 100)   1;
  var mentionedMember = message.mentions.members.first();

  if (!mentionedMember) return message.reply(`according to my calculations, you are ${rating}% funny😂`);
  return message.channel.send(`${mentionedMember}, according to my calculations, you are ${rating}% funny😂`);
}

module.exports.help = {
name:"funnyrate"
}
 

Комментарии:

1. Обратитесь к Этому руководству по созданию и отправке встраиваемых файлов.

Ответ №1:

во-первых,если вы не знаете, как делать встраивания, вам следует посетить: https://discord.js.org/#/docs/main/stable/class/MessageEmbed?scrollTo=setTitlelink. Это ссылка на discord.js страница встраивания документации.

Я еще не пробовал, но это должно сработать: Хорошего дня!

 module.exports.run = async (bot, message, args) => {
   
   var rating = Math.floor(Math.random() * 100)   1;
 
   if (!args.length) {

      const embed = new MessageEmbed()
      .setColor("RANDOM")
      .setDescription(`according to my calculations, you are ${rating}% funny😂`)
      
      return message.channel.send(embed);
   } else {

      const embed = new MessageEmbed()
      .setColor("RANDOM")
      .setDescription(`${mentionedMember}, according to my calculations, you are ${rating}% funny😂`)
     
      return message.channel.send(embed);
   }}
 
 module.exports.help = {
 name:"funnyrate"
 }