FridayNightFunkinBoyfriendBot/ChomensJS/commands/end.js

14 lines
348 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05: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) {
bot.end('end command')
},
discordExecute (bot, username, sender, prefix, args, channeldc, message) {
bot.end('end command')
}
}