चैनल के बजाय उपयोगकर्ता को एक सीधा संदेश भेजें

Dec 31 2020

इसलिए मैं यह पता लगाने की कोशिश कर रहा हूं कि चैनल के बजाय उपयोगकर्ताओं को यह एम्बेड कैसे भेजना है, लेकिन मेरे द्वारा पाए गए सभी पोस्ट मेरे प्रश्न या पुराने के लिए अप्रासंगिक हैं और बिल्कुल भी काम नहीं करते हैं।

  module.exports = {
  name: 'help',
  description: 'this is a help command!',
  execute(message, args){

      const embed = new Discord.MessageEmbed()
      .setTitle('List of Commands')
            .setDescription('This embed lists all of my commands.')
            .setColor('#ed2626')
            .addFields({
              name: '+help',
              value: 'Shows a list of commands',
              inline: true
            }, {
              name: '+ping',
              value: 'Show your insolence to krennic!',
              inline: true
            }, {
              name: 'Test Number 3',
              value: 'This is a example value'
            }, {
              name: 'Test Number 4',
              value: 'This is a example value'
            })
            .setTimestamp();

      // This right here is what i'm trying to figure out
      // Instead of sending in the channel how would i dm the person that calls the command?
      message.channel.send(embed);
      console.log('Help command was ran!')
      


  }
}

जवाब

1 strafexz Dec 31 2020 at 04:21

आप विधि User#send()उदाहरण का उपयोग कर एक उपयोगकर्ता को एक डीएम भेज सकते हैं :

superCoolUserOmg.send(superCoolEmbedOmg)
CIA Dec 31 2020 at 00:51

जूताजीप ने इसका उत्तर दिया

message.author.send(embed);