client.on('messageCreate', async(msg) => {
function isValidURL(string) {
var res = string.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);
return (res !== null)
};
var testContent = msg.content;
if(isValidURL(testContent) && msg.channel.id !== '993037263611109437' && msg.channel.id !== '993582363734970489' && !msg.member.hasPermission('MANAGE_MESSAGES')) {
msg.delete();
msg.reply('you cannot send links in this server!')
}
if(msg.content.includes('<@!599364237797883935>')) {
msg.delete()
return msg.reply('you cannot ping this user')
}
});
DeprecationWarning: The message event is deprecated. Use messageCreate instead
i keep getting this error when i @myself or put an invite link