18 lines
450 B
JavaScript
18 lines
450 B
JavaScript
exports.run = function (bot, msg) {
|
|
if (msg.mentions.users.size < 1) {
|
|
throw '@mention some people to shoot!';
|
|
}
|
|
|
|
let output = msg.mentions.users.map(m => `**${m}** :gun:`).join('\n');
|
|
|
|
msg.delete();
|
|
msg.channel.send({
|
|
embed: bot.utils.embed(`${bot.user.username} is on a killing spree!`, output)
|
|
});
|
|
};
|
|
|
|
exports.info = {
|
|
name: 'shoot',
|
|
usage: 'shoot <user>',
|
|
description: 'Shoots yer friendz!'
|
|
};
|