owobot/util/ConsoleCommand.js
7cc5c4f330d47060 cbf3398243
Rewrite help command
Yes, the help command loads commands (to prevent errors, it can't use the other command loader)
2024-08-03 03:54:11 -04:00

31 lines
1 KiB
JavaScript

// HOW TO WRITE CLASS JS
const index = require('../index.js')
const cmds = require('./commands.js')
const parse = require('../util/chatparse_console.js')
const settings = require('../settings.json')
const {getMessage} = require('../util/lang.js')
const lang = settings.defaultLang
class ConsoleCommand {
constructor (cmd, index2) {
this.send = () => {} // not needed for console
this.reply = text => process.stdout.write(parse(text) + '\n')
this.uuid = 'dde5a2a6-ebdd-4bbb-8eac-f75b10c10446_console' // hard-coded because uuid does not exist at console
this.username = 'Owner'
this.nickname = 'Console'
this.command = cmd
this.prefix = '' // prefix does not exist at console
this.bot = index2 >= 0
? index.bot[index2]
: {}
this.type = 'console'
this.index = index2
this.args = cmd.split(' ').slice(1)
this.verify = 3
this.host = ''
this.port = '3' // :3
this.lang = settings.defaultLang
this.colors = settings.colors
}
}
module.exports = ConsoleCommand