mrmBot-Matrix/commands/hackban.js

16 lines
787 B
JavaScript
Raw Normal View History

2019-11-06 17:31:31 +00:00
exports.run = async (message, args) => {
if (!args[0].match(/^<?[@#]?[&!]?\d+>?$/) && args[0] < 21154535154122752) return `${message.author.mention}, that's not a valid snowflake!`;
2019-11-06 17:31:31 +00:00
try {
const id = args[0].replace("@", "").replace("#", "").replace("!", "").replace("&", "").replace("<", "").replace(">", "");
await message.channel.guild.banMember(id, 0, `Hackban command used by @${message.author.username}#${message.author.discriminator}`);
return `Successfully banned user with ID \`${id}\`.`;
2019-11-06 17:31:31 +00:00
} catch (e) {
throw e;
//return `${message.author.mention}, I was unable to ban the member. Have you given me permissions?`;
2019-11-06 17:31:31 +00:00
}
};
exports.aliases = ["prevent", "preban"];
exports.category = 2;
exports.help = "Bans a member via user id";
exports.params = "[id]";