This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/help.js

30 lines
1.0 KiB
JavaScript
Raw Normal View History

2021-01-19 14:02:09 -06:00
module.exports = {
2022-03-18 21:27:09 -05:00
name: 'help',
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
syntax: '<Command>',
2021-01-19 14:02:09 -06:00
2022-03-18 21:27:09 -05:00
execute(client, message, args) {
const {footerTxt} = require('../config.json');
2021-02-03 21:53:42 -06:00
2022-03-18 21:27:09 -05:00
const Embed = {
"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": {
"icon_url": message.author.displayAvatarURL(),
"text": footerTxt + " | No mother it's just the northern lights"
},
"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)"
}
]
};
message.channel.send({ embed: Embed });
}};