Skip to content

Instantly share code, notes, and snippets.

View jbwar22's full-sized avatar
💤
zzzzzzzzzzzzzzzzz

Jackson Warhover jbwar22

💤
zzzzzzzzzzzzzzzzz
  • Massachusetts
View GitHub Profile
@jbwar22
jbwar22 / app.js
Last active April 17, 2018 22:39
Unban and print users
var Discord = require('discord.js');
var bot = new Discord.Client();
bot.on('message', message => {
if(message.content == '!invban'){
message.guild.fetchBans().then(bans => {
bans.forEach(user => {
console.log(user.username + '#' + user.tag);
user.send('MESSAGE / INVITE LINK');
message.guild.unban(user);