2019-08-14 12:26:33 +00:00
|
|
|
module.exports = {
|
|
|
|
name: 'eval',
|
|
|
|
description: 'Evaluation command',
|
|
|
|
cooldown: 5,
|
2019-10-10 13:43:04 +00:00
|
|
|
async execute(message, args, client, Discord, prefix) {
|
2019-08-14 12:26:33 +00:00
|
|
|
const serverQueue = client.queue.get(message.guild.id);
|
|
|
|
if (message.author.id !== '360363051792203779') return message.channel.send(':x: You are not allowed to do that!');
|
2019-10-10 13:43:04 +00:00
|
|
|
const input = message.content.slice(prefix.length + 4);
|
2019-08-14 12:26:33 +00:00
|
|
|
let output;
|
|
|
|
try {
|
|
|
|
output = await eval(input);
|
|
|
|
} catch (error) {
|
|
|
|
output = error.toString();
|
|
|
|
}
|
2019-10-10 13:43:04 +00:00
|
|
|
const embed = new Discord.RichEmbed()
|
2019-08-14 12:26:33 +00:00
|
|
|
.setTitle('Evaluation Command')
|
|
|
|
.setColor('#b50002')
|
|
|
|
.setDescription(`Input: \`\`\`js\n${input.replace(/; /g, ';').replace(/;/g, ';\n')}\n\`\`\`\nOutput: \`\`\`\n${output}\n\`\`\``);
|
|
|
|
return message.channel.send(embed);
|
|
|
|
},
|
|
|
|
};
|