Eh, why not

This commit is contained in:
TheEssem 2021-05-23 22:46:36 -05:00
parent 248ea8a71b
commit 97012f4087
No known key found for this signature in database
GPG Key ID: A3F9F02129092FCA
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
const { clean } = require("../../utils/misc.js");
const Command = require("../../classes/command.js");
class EvalRawCommand extends Command {
async run() {
if (this.message.author.id !== process.env.OWNER) return "Only the bot owner can use evalraw!";
const code = this.args.join(" ");
try {
const evaled = eval(code);
if (evaled.length >= 2000) {
return {
text: "The result was too large, so here it is as a file:",
file: evaled,
name: "result.txt"
};
} else {
return evaled;
}
} catch (err) {
return `\`ERROR\` \`\`\`xl\n${await clean(err)}\n\`\`\``;
}
}
static description = "Executes JavaScript code (with raw output)";
static aliases = ["run"];
static arguments = ["[code]"];
}
module.exports = EvalRawCommand;