Redo help embed
This commit is contained in:
parent
db045972c1
commit
bdd45a7e4f
1 changed files with 27 additions and 41 deletions
|
@ -1,44 +1,30 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
name: 'help',
|
name: 'help',
|
||||||
description: '',
|
description: 'Get help on anything from commands, to what the bot does! just not your homework..',
|
||||||
execute(client, message, args) {
|
syntax: '<Command>',
|
||||||
|
|
||||||
const messageAuthor = message.author
|
execute(client, message, args) {
|
||||||
const embed = {
|
const {footerTxt} = require('../config.json');
|
||||||
"title": "<:NyabotInfo:697145463350231040> **HELP** " + messageAuthor.username + " **THE BOT IS ON FIRE!** ",
|
|
||||||
"color": 9442302,
|
|
||||||
"description": "More commands are soon to come, stay tuned!",
|
|
||||||
"footer": {
|
|
||||||
"text": "Made with ❤ in Illinois | Anitrox by IDeletedSystem64"
|
|
||||||
},
|
|
||||||
"fields": [
|
|
||||||
{
|
|
||||||
"name": "Utility Commands",
|
|
||||||
"value": "`help` ``info`` ``userinfo`` ``ping`` ``invite`` ``avatar``"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Server Management Commands",
|
|
||||||
"value": "`setnick`"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Action Commands",
|
|
||||||
"value": "`hug` `poke` `bonk` `slap` `pat` `kiss` `lick` `cuddle` `nom` `leskiss` `snuggle`"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "**...or is the bot actually on fire? Come here for help and support!**",
|
|
||||||
"value": "bit.ly/anitrox-help"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "**Or you can view the bot progress, known issues, and planned features!**",
|
|
||||||
"value": "bit.ly/anitrox-trello"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "<:AnitroxInfo:809651936831733791> **The bot isn't yet fully finished. There's more to come! if I don't rewrite from scratch that is 😛**"
|
|
||||||
}
|
|
||||||
|
|
||||||
]
|
const Embed = {
|
||||||
};
|
"title": "HELP! SEYMOUR! THE BOT IS ON FIRE!",
|
||||||
message.channel.send({ embed });
|
"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 });
|
||||||
|
}};
|
Reference in a new issue