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-29 13:51:43 -05:00
|
|
|
async execute(_0, message, _1, config) {
|
2022-03-26 11:02:17 -05:00
|
|
|
await message.channel.send({embed: {
|
2022-03-18 21:27:09 -05:00
|
|
|
"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,
|
2022-03-26 12:31:03 -05:00
|
|
|
"footer": {
|
|
|
|
"icon_url": message.author.displayAvatarURL(),
|
2022-03-29 13:51:43 -05:00
|
|
|
"text": `${config.footerTxt} | No mother it's just the northern lights`
|
2022-03-26 12:31:03 -05:00
|
|
|
},
|
2022-03-18 21:27:09 -05:00
|
|
|
"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)"
|
|
|
|
}
|
|
|
|
]
|
2022-03-26 11:02:17 -05:00
|
|
|
}});
|
2022-03-26 03:33:18 -05:00
|
|
|
}
|
|
|
|
}
|