discord_bot/commands/fun/math.js

23 lines
690 B
JavaScript

const { MessageEmbed } = require("discord.js");
const math = require("mathjs");
const Color = `RANDOM`;
module.exports = {
name: "math",
category: "fun",
run: async (client, message, args) => {
try {
if (!args[0]) return message.channel.send("Bitte geben Sie mir Gleichung!");
const embed = new MessageEmbed()
.setColor(`${Color}`)
.setTitle(`Ergebnis`)
.setDescription(math.evaluate(args.join(" ")))
.setTimestamp();
message.channel.send(embed);
} catch (error) {
message.channel.send(`Bitte geben Sie mir eine gültige Gleichung | Versuchen Sie es später noch einmal!`).then(() => console.log(error));
}
}
};