aboutsummaryrefslogtreecommitdiff
path: root/commands/timeout.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2022-09-20 09:24:37 -0400
committerAndrew Lee <alee14498@protonmail.com>2022-09-20 09:24:37 -0400
commit85a8f11507c0fb74b67914090bdfe10c361b775e (patch)
treeda8b96c91854df8953da241ccfe9872e8effe496 /commands/timeout.js
parent96762ce209415c72e098a78771f80fcc41413280 (diff)
downloadAleeBot-85a8f11507c0fb74b67914090bdfe10c361b775e.tar.gz
AleeBot-85a8f11507c0fb74b67914090bdfe10c361b775e.tar.bz2
AleeBot-85a8f11507c0fb74b67914090bdfe10c361b775e.zip
Removed jail command; Added more activities; Few tweaks
Diffstat (limited to 'commands/timeout.js')
-rw-r--r--commands/timeout.js49
1 files changed, 49 insertions, 0 deletions
diff --git a/commands/timeout.js b/commands/timeout.js
new file mode 100644
index 0000000..bed9077
--- /dev/null
+++ b/commands/timeout.js
@@ -0,0 +1,49 @@
+/** **************************************
+ *
+ * Jail: Command for AleeBot
+ * Copyright (C) 2017-2021 Alee Productions
+ *
+ * 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.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * *************************************/
+module.exports.run = async (client, message, args) => {
+ const { MessageEmbed } = require('discord.js');
+
+ if (!message.member.permissions.has('BAN_MEMBERS')) return message.reply('It looks like that you don\'t have the permissions to jail members.');
+ if (!message.guild.members.cache.get(client.user.id).permissions.has('MANAGE_ROLES')) return message.reply('Uhh... I don\'t have permission to jail members.');
+
+ if (!args[1]) message.reply('Determine the length of the timeout...');
+ if (!args[2]) message.reply('Determine the reason of the timeout...');
+
+ const member = message.mentions.members.first();
+ if (!member) return await message.reply('Uhh... Please mention a member first.');
+
+ const timeoutEmbed = new MessageEmbed()
+ .setDescription(`${member.user.tag} just got timed out!`)
+ .addField('Length', `${args[1]} minute(s)`)
+ .addField('Reason', args[2])
+ .setColor('#ec2727')
+ member.timeout(args[1] * 60 * 1000, args[2]).then(message.reply({embeds: [timeoutEmbed]}));
+};
+
+exports.conf = {
+ aliases: [],
+ guildOnly: false,
+};
+exports.help = {
+ name: 'timeout',
+ description: 'Times out a member',
+ usage: 'timeout [user]',
+ category: '- Moderation Commands',
+};