blob: d0b0ed08538c3ad8814cd005f3e6d8e2736acbe7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
//This command was ported from AstralMod
message.channel.send("<@" + message.author.id + "> :right_facing_fist: " + args);
commandProcessed = true;
}
exports.conf = {
enabled: true,
guildOnly: false,
aliases: [],
permLevel: 0
};
exports.help = {
name: 'attack',
description: 'If your mad at someone if they messed up use this command and mention them.',
usage: 'attack [args]'
};
|