const { MessageEmbed } = require("discord.js"); module.exports = { name: 'help', description: 'Get help on anything from commands, to what the bot does! just not your homework..', syntax: '', async execute(_0, message, _1, footer) { await message.channel.send(new MessageEmbed({ "title": "HELP! SEYMOUR! THE BOT IS ON FIRE!", "description": "Get help on anything from commands, to what the bot does! just not your homework..", "color": 9442302, "footer": footer, "fields": [ { "name": "Command List", "value": "[Click here!](https://github.com/IDeletedSystem64/anitrox/blob/dev/commands.md)" }, { "name": "...Or is the bot actually on fire?", "value": "Join the [support server!](https://discord.gg/grebRGsBZ3)" } ] })); } }