This package allows you to chat with people who direct message your discord bot.
npm install discord-dmsupportThis package allows you to chat with people who direct message your discord bot.
javascript
const discord = require('discord.js');
const dmSupport = require('discord-dmsupport');
const client = new Discord.Client();
client.dm = new dmSupport(client, guildID, roleID);
/*
client = your discord client
guildID = the guild where the channels should be created
roleID = the role id (or member id) who should have access to the channels
*/
client.login('');
client.on('ready', () => {
// Start the Service when your bot is ready!
client.dm.startService();
});
``