M
M
Mark Eshkilev2020-07-31 14:13:01
JavaScript
Mark Eshkilev, 2020-07-31 14:13:01

How to make a discord bot unban on command?

How to make the bot unban on command? For example, I enter the command !unban @member#1234 and he unbanned him??

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexander, 2020-07-31
@mark_edinoroglove

bot.on("message", message => {
  
  if (message.content.startsWith(prefix + "unban")) {
    
   var args = message.content.slice(prefix.length).trim().split(' ')

   message.guild.members.unban(args[1])
  }
  
  
})

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question