-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.example.ts
26 lines (26 loc) · 1.43 KB
/
config.example.ts
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
export default {
/**
* @param {String} ModMailCategoryID - Copy the ID of the ModMail Log category and paste it between the ''.
* @param {String} ModMailLogID - Same as above but with logs channel ID.
* @param {String} ModeratorRoleID - Same as above but with the role you want that gets access to ModMails.
* @param {String} ModPingRoleID - Same as above but with ModMail Ping role which will be notified whenever someone contacts the ModMail bot.
* @param {BigInteger} DefaultColor - Replace BEECCD with the HEX code of the color you would like.
* @param {String} Prefix - Prefix of the bot.
* @param {String} GuildID - ID of the server where the bot should run in.
* @param {String} CrossEmoji - Emoji that means something went wrong.
* @param {String} ModMailAutomaticMessage - A string containing parameters: {{userid}}, {{usermention}}, {{usertag}}
* @param {String} TickEmoji - Emoji that means a message has been sent to ModMail channel.
* @param {String} Token - Your token that you can get from https://discord.com/developers/applications
*/
ModMailCategoryID: "CategoryIDHere",
ModMailLogID: "ModMailLogChannelIDHere",
ModeratorRoleID: "ModeratorRoleIDHere",
ModPingRoleID: "ModPingRoleIDHere",
DefaultColor: 0xbeeccd,
Prefix: "PrefixHere",
GuildID: "GuildIDHere",
CrossEmoji: "EmojiNameHere:EmojiIDHere",
ModMailAutomaticMessage: "MessageHere",
TickEmoji: "EmojiNameHere:EmojiIDHere",
Token: "YourTokenHere",
};