owobot/util/Command.js

23 lines
564 B
JavaScript
Raw Normal View History

2024-07-06 11:02:11 -04:00
//HOW TO WRITE CLASS JS
const parse = require("../util/chatparse.js")
class Command{
constructor (uuid,user,nick,cmd,prefix,bot,verify){
2024-07-16 16:41:49 -04:00
this.send = (uuid,text)=>{bot.tellraw(uuid,text)};
2024-07-06 11:02:11 -04:00
this.reply = text => bot.tellraw(uuid,text);
this.uuid = uuid;
this.username = user;
this.nickname = nick;
this.command = cmd;
this.prefix = prefix;
this.bot = bot;
this.type = 'minecraft';
this.index = bot.id;
this.args = cmd.split(' ').slice(1);
this.verify = verify;
this.host = bot.host;
this.port = bot.port;
}
}
module.exports = Command;