blob: 2e6c91846a072b0d5b4f8975f6e3b351fbc2ae3a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
module.exports.run = async (client, message, args) => {
if (!['242775871059001344',].includes(message.author.id)) return message.reply('Nope! You need the person who created this bot to use this command.');
let absay = args.join(" ");
message.delete().catch();
message.reply(absay);
};
exports.conf = {
aliases: [],
guildOnly: false,
};
exports.help = {
name: 'say',
description: 'You can control AleeBot now!',
usage: 'say [context]',
category: '- Owners Only',
};
|