chomens-bot-js/commands/end.js

14 lines
348 B
JavaScript
Raw Permalink Normal View History

2022-08-14 05:51:45 -04:00
module.exports = {
name: 'end',
alias: [],
description: 'Ends the bot\'s client',
usage: '<hash>',
trusted: 1,
execute (bot, username, sender, prefix, args, config, hash, ownerhash, selector) {
2022-11-27 02:35:28 -05:00
bot.end('end command')
2022-08-14 05:51:45 -04:00
},
discordExecute (bot, username, sender, prefix, args, channeldc, message) {
2022-11-27 02:35:28 -05:00
bot.end('end command')
}
}