Advertisement
ii_kinqm1ke

deletes links

Jun 7th, 2020
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. discord.on('MESSAGE_CREATE', async (msg) => {
  2.   if (
  3.     msg.content.includes('discord.gg/') ||
  4.     msg.content.includes('www.') |
  5.       msg.content.includes('http') |
  6.       msg.content.includes('htpps://')
  7.   )
  8.     await msg.delete();
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement