/* eslint-disable no-eval */ /* eslint-disable max-len */ const util = require('util') const { stylize } = require('../util/colors/minecraft') const { MessageEmbed } = require('discord.js') module.exports = { name: 'servereval', alias: [], description: 'Basically eval command but without vm2', trusted: 2, usage: ' ', execute: function (bot, username, usernameraw, sender, prefix, args, config, hash, ownerhash, selector) { try { bot.tellraw(selector, { text: util.inspect(eval(args.slice(1).join(' ')), { stylize }).substring(0, 32766) }) } catch (err) { bot.tellraw(selector, { text: util.inspect(err).replaceAll('runner', 'chayapak1'), color: 'red' }) } }, discordExecute: function (bot, username, usernameraw, sender, prefix, args, channeldc, message, config) { try { const Embed = new MessageEmbed() .setColor('#FFFF00') .setTitle('Output') .setDescription(util.inspect(eval(args.join(' ')), { stylize })) channeldc.send({ embeds: [Embed] }) } catch (err) { const Embed = new MessageEmbed() .setColor('#FF0000') .setTitle('Error') .setDescription(`\`\`\`${util.inspect(err).replaceAll('runner', 'chayapak1')}\`\`\``) channeldc.send({ embeds: [Embed] }) } } }