mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
6895a37104
i totally did not used the search icon thing in vscode
21 lines
707 B
JavaScript
21 lines
707 B
JavaScript
/* eslint-disable max-len */
|
|
const util = require('util');
|
|
const {stylize} = require('../util/colors/minecraft');
|
|
module.exports = {
|
|
name: 'servereval',
|
|
alias: [],
|
|
description: 'Eval command without vm2',
|
|
trusted: 2,
|
|
usage: '<ownerhash> <code>',
|
|
execute: function(bot, username, usernameraw, sender, prefix, args) {
|
|
if (args[0]===bot.ownerHash) {
|
|
try {
|
|
bot.tellraw('@a', {text: `${util.inspect(eval(args.slice(1).join(' ')), {stylize: stylize})}`.substring(0, 1900)});
|
|
} catch (err) {
|
|
bot.tellraw('@a', {text: `${util.inspect(err).replaceAll('runner', 'chayapak1')}`, color: 'red'});
|
|
}
|
|
} else {
|
|
throw new Error('Invalid OwnerHash');
|
|
}
|
|
},
|
|
};
|