-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelpt.js
36 lines (31 loc) · 1.03 KB
/
helpt.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
const { MessageEmbed } = require('discord.js');
const { stripIndents } = require('common-tags');
module.exports.run = async (bot, message, args) => {
let embed = new MessageEmbed()
.setTitle("**SourCreams Global Help**")
.setDescription(`➜ For help, join our **[Support Server](https://discord.gg/9nCn6y6s2p)**\n➜ **_about** for Information`)
.setThumbnail(`https://i.ibb.co/9ZXWfqb/global-icon-13.png`)
.addField("**Tags**", stripIndents`
**\`_tag <name>\`**
**\`_addtag <name> <content>\`**
**\`_edittag <name> <content>\`**
**\`_deletetag <name>\`**
**\`_taginfo <name>\`**
**\`_taglist\`**
`, true)
.addField("**Miscallaneous**", stripIndents`
**\`_help\`**
**\`_avatar <user>\`**
**\`_about\`**
**\`_botstats\`**
**\`_ping\`**
**\`_say\`**
`, true)
.setColor("#E0E0D2")
.setFooter(`Prefix » _`)
message.channel.send(embed);
}
module.exports.help = {
name: "helpt",
aliases: ["servertags", "tags"]
}