AleeBot/commands/suggest.js

46 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-03-31 13:29:42 -04:00
/****************************************
2018-03-25 12:53:04 -04:00
*
2018-03-31 13:29:42 -04:00
* Suggest: Command for AleeBot
* Copyright (C) 2018 AleeCorp
2018-03-25 12:53:04 -04:00
*
2018-03-31 13:29:42 -04:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2018-03-25 12:53:04 -04:00
*
2018-03-31 13:29:42 -04:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
2018-03-25 12:53:04 -04:00
*
2018-03-31 13:29:42 -04:00
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* *************************************/
2018-03-25 12:53:04 -04:00
module.exports.run = async (client, message, args) => {
if (message.guild.id != '243022206437687296') return message.reply ('This is a ACN exclusive command.');
const { RichEmbed } = require('discord.js');
client.channels.find('id', '427495678390960148').send(
new RichEmbed()
.setColor ('#1fd619')
.setTitle('Suggestion')
.setDescription(`This is a suggestion from `+ message.author.username +` please react to it using the following emojis.`)
.addField('Suggestion Contents', args.join(' '))
).then(message => {
message.react('\u2705');
message.react('\u274E');
});
2018-03-25 14:56:15 -04:00
message.reply("Alright, your suggestion has been shown now.")
2018-03-25 12:53:04 -04:00
};
exports.conf = {
aliases: [],
2018-03-29 15:35:59 -04:00
guildOnly: false,
2018-03-25 12:53:04 -04:00
};
exports.help = {
name: 'suggest',
description: 'Suggest things in AleeBot.',
usage: 'suggest [suggestion]',
2018-04-13 22:27:30 -04:00
category: '- ACN Exclusive Commands',
2018-03-25 12:53:04 -04:00
};