EnragedPvP

Untitled

Feb 2nd, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. } if (command === 'purge'){
  2. module.exports = {
  3. name: 'purge',
  4. description: "Clear messages!",
  5. async execute(message, args) {
  6. if (!args[0]) return message.reply("Please enter the amount of messages to clear!");
  7.  
  8. if(isNaN(args[0])) return message.reply("Please type a real number!");
  9.  
  10. if(args[0] > 100) return message.reply("You can't remove more than 100 messages!");
  11.  
  12. if(args[0] < 1) return message.reply("You have to delete at least one message!");
  13.  
  14. await message.channel.messages.fetch({ limit: args[0]}).then(messages =>{
  15. message.channel.bulkDelete(messages)
  16. });
Advertisement
Add Comment
Please, Sign In to add comment