I have this code which advertises to server admins and mods when someone tags an important user on the server (a user who should not be tagged).
Here's the code.
client.on('messageCreate', message => {
if(message.author.bot || message.channel.type === `DM`) return;
if(message.mentions.members.get(`332599069027598336`)){
message.reply(`The user ${message.author} has mentioned ${message.mentions.members.get(`332599069027598336`).user.tag}`);
}
});