aboutsummaryrefslogtreecommitdiff
path: root/commands/say.js
blob: f32544bcb12e980855d7cc3a8a06f284dc0a4140 (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
const Discord = require('discord.js');
exports.run = (client, message, args, config) => {
  if(message.author.id !== config.ownerID) return;
  message.channel.sendMessage(args.join(" "));
  message.delete();

}

exports.conf = {
  enabled: true,

  guildOnly: false,

  aliases: [],

  permLevel: 0

};

exports.help = {

  name: 'say',

  description: 'You cannot use this command host of the bot can use it!',

  usage: 'say [input]'

};