forked from haykam821/Discord-RoleReact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
67 lines (53 loc) · 1.65 KB
/
Copy pathconfig.example.js
File metadata and controls
67 lines (53 loc) · 1.65 KB
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
module.exports = {
/**
* Instructions on how to get this: https://redd.it/40zgse
*/
yourID: "",
setupCMD: "!createrolemessage",
/**
* Delete the 'setupCMD' command after it is ran. Set to 'true' for the command message to be deleted
*/
deleteSetupCMD: false,
initialMessage: `**React to the messages below to receive the associated role. If you would like to remove the role, simply remove your reaction!**`,
embedMessage: `
React to the emoji that matches the role you wish to receive.
If you would like to remove the role, simply remove your reaction!
`,
/**
* Must set this if "embed" is set to true
*/
embedFooter: "Role Reactions",
roles: ["Hacker", "Artist", "Public Relations", "Intern"],
/**
* For custom emojis, provide the name of the emoji
*/
reactions: ["💻", "🖌", "😃", "🆕"],
/**
* Set to "true" if you want all roles to be in a single embed
*/
embed: true,
/**
* Set the embed color if the "embed" variable is et to "true"
* Format:
*
* #dd9323
*/
embedColor: "#dd9323",
/**
* Set to "true" if you want to set a thumbnail in the embed
*/
embedThumbnail: false,
/**
* The link for the embed thumbnail if "embedThumbnail" is set to true
*/
embedThumbnailLink: "",
/**
* You"ll have to set this up yourself! Read more below:
* Please do not commit this token to the public if you contributed to this repository
* or host your code anywhere online. Giving someone your bot's token is the equivalent
* to giving someone the keys to your house and walking away!
*
* https://github.com/reactiflux/discord-irc/wiki/Creating-a-discord-bot-&-getting-a-token
*/
botToken: ""
};