How to check if a user is writing a message in a shared channel and tell him to write in a bot-specific channel?
This is the code I tried:
if (message.channel.id === "bot-playground"){
// write code here
}else {
message.channel.send("Write commands in #bot-playground.").then(msg => {
timeout(3000, msg);
});
}