Add eval command

This commit is contained in:
7cc5c4f330d47060 2024-07-18 16:55:23 -04:00
parent c6a2eaf298
commit 8729e60fed

17
plugins/commands/eval.js Normal file
View file

@ -0,0 +1,17 @@
const textformat=require("../../util/textformat.js")
const index=require("../../index.js") //Not used in the code, but may be used by users of the command
module.exports={
execute: (c)=>{
if(c.type!="console"){
c.reply(textformat("Eval command is currently not available to players in Minecraft"))
};
try{
console.log(eval(c.args.join(" ")));
}catch(e){
console.error(e);
}
},
desc: "Run JavaScript code", // Command description
usage: '', // Command usage
hidden: true
}