module.exports = { name: 'end', alias: [], description: 'Ends the bot\'s client', usage: '', 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'); } }, };