I'm using discord.js and I'm trying to make if a user sends a direct message to a bot, it will respond a simple reply such as "I'm sorry, You can not DM me. Please use the ticket system instead."
I tried using:
client.on('message', msg => {
if (msg.channel.type == "dm") {
msg.author.send(" blah blah example text");
return;
}
});
This yields no results.
I'm totally new to coding and I would appreciate the help.
Thanks