This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathconfig.js
29 lines (29 loc) · 1.68 KB
/
config.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
module.exports = {
prefix: "", // The prefix of the bot
welcomeChannel: "", // The channel ID of where join and leave messages should be sent
slashCommands: true, // Wether or not the bot should have slash commands
colors: {
main: [0, 110, 255],
error: [231, 76, 60]
},
botstatus: {
enabled: false, // Wether or not the bot should have a status
status: "", // The status of the bot (dnd, online, idle, invisible)
activity_type: "", // The type of the activity (watching, listening, playing, streaming)
activity_text: "", // The activity text
activity_url: "" // The stream URL
},
inviteRewards: false, // Wether or not invite rewards should be enabled
rewards: [
{
invitesNeeded: 5, // The amount of invites they should have
roleID: "" // The role ID for the role they should get
}, //Copy and paste this for each invite reward
{
invitesNeeded: 10,
roleID: ""
}
],
welcomeMessage: "{member} joined the server. They were invited by **{inviter}** (who has {invites} invites).", // Use {inviter} for who invited the member, {member} for the member, {code} for the invite used, {mention} to mention the inviter, {ID} for the ID of the member, {inviterID} for the inviter's ID, and {invites} for the inviter's invites
leaveMessage: "{member} left the server. They were invited by **${inviter}** (who has ${invites} invites).", // Use {inviter} for who invited the member, {member} for the member, {mention} to mention the inviter, {ID} for the ID of the member, {inviterID} for the inviter's ID, and {invites} for the inviter's invites
}