chomens-bot-js/commands/end.js

24 lines
684 B
JavaScript
Raw Normal View History

2022-08-18 19:42:14 -04:00
/* eslint-disable max-len */
const config = require('../config.json');
2022-08-14 05:51:45 -04:00
module.exports = {
name: 'end',
alias: [],
description: 'Ends the bot\'s client',
usage: '<hash>',
trusted: 1,
execute: function(bot, username, usernameraw, sender, prefix, args) {
if (args[0]===bot.hash) {
bot.emit('end', 'end command');
} else {
throw new Error('Invalid hash');
}
},
2022-08-18 19:42:14 -04:00
discordExecute: function(bot, username, usernameraw, sender, prefix, args, channeldc, message) {
if (message.member._roles.at(0)===config.discord.trustedRoleID) {
bot.emit('end', 'end command');
} else {
throw new Error('You\'re not in trusted role!');
}
},
2022-08-14 05:51:45 -04:00
};