2023-12-17 14:55:27 -05:00
|
|
|
const CommandError = require('../CommandModules/command_error')
|
|
|
|
module.exports = {
|
|
|
|
name: 'end',
|
|
|
|
description:['/kill the bot or make it /suicide'],
|
2023-12-20 11:54:03 -05:00
|
|
|
trustLevel: 1,
|
2023-12-17 14:55:27 -05:00
|
|
|
aliases:['kys','kill','suicide'],
|
|
|
|
execute (context) {
|
|
|
|
const bot = context.bot
|
|
|
|
const message = context.arguments.join(' ')
|
|
|
|
const args = context.arguments
|
|
|
|
const source = context.source
|
|
|
|
source.sendFeedback(`${bot.username} fell out of the world`)
|
2024-01-12 12:24:01 -05:00
|
|
|
process.exit()
|
2023-12-17 14:55:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/*context.source.sendFeedback('farding right now....')
|
|
|
|
process.exit(1)
|
|
|
|
*/
|