I have a Discord bot and I want it to direct someone to a different channel if they use the trigger word(s). I know I'm probably missing a line or two of code to do it.
bot.on("message", message => {
if(message.content.toLowerCase().indexOf('lists') > -1) {
message.channel.send(`Please visit #bt-updates for information on the current list information!`);
}
});