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

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-01-19 14:02:09 -06:00
module.exports = {
name: 'help',
description: '',
execute(client, message, args) {
2021-02-02 23:56:33 -06:00
const messageAuthor = message.author
2021-01-19 14:02:09 -06:00
const embed = {
2021-02-02 23:56:33 -06:00
"title": "<:NyabotInfo:697145463350231040> **HELP** " + messageAuthor.username + " **THE BOT IS ON FIRE!** ",
2021-01-19 14:02:09 -06:00
"color": 9540095,
2021-02-02 23:56:33 -06:00
"description": "More commands are soon to come, stay tuned!",
2021-01-19 14:02:09 -06:00
"footer": {
"text": "Some commands are hidden for dev-only. | Anitrox © IDeletedSystem64 2018-2021"
},
"fields": [
{
2021-02-02 23:56:33 -06:00
"name": "Utility Commands",
"value": "`help` ``info`` ``userinfo`` ``ping`` ``invite`` ``avatar``"
2021-01-19 14:02:09 -06:00
},
{
"name": "Moderation Commands",
2021-02-02 23:56:33 -06:00
"value": "`ban`/`unban` `kick` `mute`/`unmute` "
2021-01-19 14:02:09 -06:00
},
{
"name": "Server Management Commands",
2021-02-02 23:56:33 -06:00
"value": "`makerole`/`delrole`/`editrole` `setnick` `makechan`/`editchan`/`delchan` "
2021-01-19 14:02:09 -06:00
},
{
2021-02-02 23:56:33 -06:00
"name": "Action Commands",
"value": "`hug` `poke` `bonk` `slap` `pat` `kiss` `lick` `cuddle` `nom` `leskiss` `snuggle`"
2021-01-19 18:30:55 -06:00
},
{
2021-02-02 23:56:33 -06:00
"name": "**...or is the bot actually on fire? Come here for help and support!**",
"value": "bit.ly/anitrox-help"
2021-01-19 14:02:09 -06:00
}
]
};
message.channel.send({ embed });
}
};