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.
2021-01-19 14:02:09 -06:00
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
name: 'help',
|
|
|
|
description: '',
|
|
|
|
execute(client, message, args) {
|
|
|
|
|
|
|
|
const embed = {
|
|
|
|
"title": "<:NyabotInfo:697145463350231040> **Help? HELP!** ",
|
|
|
|
"color": 9540095,
|
2021-01-19 17:43:45 -06:00
|
|
|
"description": "<:NyabotWarning:697145463194910791> Not all commands have been implemented. and may be removed without warning",
|
2021-01-19 14:02:09 -06:00
|
|
|
"footer": {
|
|
|
|
"text": "Some commands are hidden for dev-only. | Anitrox © IDeletedSystem64 2018-2021"
|
|
|
|
},
|
|
|
|
"fields": [
|
|
|
|
{
|
|
|
|
"name": "**General Commands**",
|
|
|
|
"value": "`help` ``info`` ``userinfo`` ``ping`` ``invite`` ``avatar`` ``google`` ``youtube``"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Moderation Commands",
|
|
|
|
"value": "`ban` `kick` `warn` `mute` `unban` `unmute` `purge` `permissions`"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Server Management Commands",
|
|
|
|
"value": "` channelcreate` `channeldelete` `channelrename` `rolecreate` `roleedit` `roledelete` `setnick`"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Fun Commands",
|
|
|
|
"value": "`hug` `poke` `bonk` `slap` `pat` `kiss` `lick` `cuddle` `nom`"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
message.channel.send({ embed });
|
|
|
|
}
|
|
|
|
};
|