Это должно работать для вас. Я бы посоветовал, возможно, попытаться закодировать то, что вы хотите, если вы не можете понять, как это сделать, а затем попросить о помощи.
Кроме этого, хорошего начальника дня.
client.on('message', message => {
const channelID = "CHANNELID" // change this to the channels id
const requiredWord = "!suggestion" // what the message should start with
// check if the message.channel.id is the same as the channelID for suggestion page
if (message.channel.id == channelID) {
// check if it starts with requiredWord
if (message.content.startsWith(requiredWord) {
// console.log suggestion allowed
console.log("Suggestion Allowed")
} else {
// else delete the message.
message.delete()
}
}
});