This repository was archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.js
71 lines (65 loc) · 2.62 KB
/
help.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
const Discord = require('discord.js')
module.exports.run = async (client, message, args) => {
if (args[0]) {
if (!client.commands.has(args[0]) || client.permLvl < client.commands.get(args[0]).permlvl) return message.channel.send(`This isn\'t a command you have access to. Do ${client.prefix}help to view all the commands you can use!`);
let cmd = client.commands.get(args[0])
message.channel.send(`The syntax for ${cmd.name} is: \`${cmd.usage}\``)
return;
}
let info = [];
let mod = [];
let admin = [];
let dev = [];
let music = [];
let misc = [];
client.commands.forEach(cmd => {
if (cmd.hidden == true) return;
if (cmd.permlvl > client.permlvl) return;
switch (cmd.category) {
case "info":
info.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
case "mod":
mod.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
case "admin":
admin.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
case "dev":
dev.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
case "music":
music.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
case "misc":
misc.push(`**${client.prefix}${cmd.name}:** ${cmd.description}`)
break;
default: console.error(`ERR Unable to find Category of: ${cmd.name}`)
}
});
let embed = new Discord.RichEmbed()
.setTitle(`Nova Commands:`)
.setDescription(`[P] - Premium | [D] - Depricated`)
.setTimestamp()
.setColor('#ff0000')
// .setColor('#C54816')
.attachFiles([`content/htlogo.png`])
.setThumbnail(client.user.avatarURL)
.setFooter(`${client.user.username} made by HammerTechnik`, `attachment://htlogo.png`)
.addField('Information:', info.join('\n'))
.addField('Music Commands:', music.join('\n'))
.addField('Miscellaneous:', misc.join('\n'))
if (mod[0]) embed.addField('Moderation Commands:', mod.join('\n'))
if (admin[0]) embed.addField('Admin Commands:', admin.join('\n'))
if (dev[0]) embed.addField('Dev Tools:', dev.join('\n'))
message.channel.send(embed)
}
exports.help = {
name: "help",
description: "View all the commands you are able to use",
aliases: ['h'],
permlvl: 1,
hidden: false,
category: "misc",
usage: "help <command> | <optional> [required]"
}