Answers for "discord.js v13 if dm"

0

discord.js v13 if dm

const client = new discord.Client({ partials: ["CHANNEL"], intents: [
    discord.Intents.FLAGS.DIRECT_MESSAGES, 
    discord.Intents.FLAGS.DIRECT_MESSAGE_TYPING
]})
// add: partials: ["CHANNEL"]

client.on('messageCreate', message => {
   if (message.channel.type == 'DM') {
      console.log('Dm recieved!')
   }
})
Posted by: Guest on April-24-2022

Code answers related to "discord.js v13 if dm"

Code answers related to "Javascript"

Browse Popular Code Answers by Language