-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConfiguration.js
141 lines (139 loc) · 5.44 KB
/
Configuration.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
var BotConfiguration = [
//=============================
//BotConfiguration=============
BotPrefix = "-",
ServerOwnerID = "453719594708762636",
ActivityMessage = "Update windows!",
//=============================
//MemberConfiguration==========
MemberLeaveChannelID = "862185793911914516",
WelcomeChannelID = "862185793911914516",
NewMemberRoleID = "799863064455282689",
//=============================
//LevelUpConfiguration=========
LevelUpChannelID = "861821974438608919",
ChannelExcludeID = "911819288548093972",
LevelUpMoney = "500",
RandomXP = "5",
MaxXP = "100",
//=============================
//ModerationConfiguration======
DeletedMessageLogChannelID = "861806446337720340",
EditedMessagesLogChannelID = "861806446337720340",
AMBypassPermissionCheck = "MANAGE_MESSAGES",
LogChannelID = "861806425700564992",
MuteRoleID = "799863227269775371",
ModLogID = "861806413848117248",
//=============================
//DCPConfiguration=============
DCPChannelID = "861821974438608919",
DCPRoleID = "825568176178855977",
PingTime = "12h",
//=============================
//SupportConfiguration=========
ApplicationChannelID = "923374480015904848",
SuggestionChannelID = "911819288548093972",
PollChannelID = "861806480084041779",
BugChannelID = "878471568831963148",
//=============================
//OtherConfiguration===========
SeasonRoleID = "825556515284844544",
UpdateRoleID = "855279094149283880",
];
//Other Configurations
DeadChatQuestions = [
"What would you do if you where offered the chance to go to Mars?",
"What is the most valuable thing you currently have in game?",
"What is one of the funniest (but clean) jokes you know?",
"What movie or book character do you most identify with?",
"As a child, what did you wish to be when you grew up?",
"Are we seeing signs of evolution in our species?",
"What's a trait do you like most about yourself?",
"Why is science so important to modern society?",
"What is your favorite form of transportation?",
"What is your favorite version of Minecraft?",
"Is time relative to a person or universal?",
"What subject are you the best at in school?",
"What song always puts you in a good mood?",
"Survival, Creative or Hardcore Minecraft?",
"Which is the better pie? Debate in chat!",
"What do you like to do on the weekends?",
"Would you say you make friends easily?",
"What do you like to do on a rainy day?",
"What's your favorite type of music?",
"What is your favorite Disney movie?",
"Have you read the #qod of the day?",
"What's your favorite activity?",
"Laptop, Desktop or Handheld?",
"Java or Bedrock Minecraft?",
"What's your favorite food?",
"Windows, MacOS or Linux?",
"PlayStation Or Xbox?",
"How have you been?",
"Iphone or Android?",
"Do you have pets?",
"Airplane or Car?",
];
//---------------Configuration Help---------------//
//------------------------------------------------//
//
// BotPrefix: The beginning of each command. Example: -, !, ?, *
//
// ServerOwnerID: The ID of the server owner or bot maintainer to get full access to the bot
//
// ActivityMessage: The status the bot will show
//
// MemberLeaveChannelID: The channel ID to send a message when a member leaves the server
//
// WelcomeChannelID: The channel ID to send a message when a new member joins
//
// NewMemberRoleID: The role ID to give new members
//
// LevelUpChannelID: The channel ID to send level up messages to
//
// ChannelExcludeID: A channel ID you can exclude from people getting xp from (can currently only support 1 channel)
//
// LevelUpMoney: The amount of money a user gets for each level up
//
// RandomXP: The maximum amount of xp you can get per message
//
// MaxXP: The amount of xp you need to level up
//
// DeletedMessageLogChannelID: The channel id to log Deleted Messages
//
// EditedMessagesLogChannelID: The channel id to log Edited Messages
//
// AMBypassPermissionCheck: The permission needed to bypass Auto Moderation
//
// LogChannelID: The channel id to log bans, kicks, mutes, unmutes, warns
//
// MuteRoleID: The ID of the mute role
//
// ModLogID: The channel id to log Auto Moderation messages and purge messages
//
// DCPChannelID: The channel you want to send the Dead Chat Ping in
//
// DCPPingRoleID: The Dead Chat Ping role ID you want to ping
//
// PingTime: The amount of (in hours) between pings
//
// ApplicationChannelID: The channel ID to send Staff Applications
//
// SuggestionChannelID: The channel ID to send Suggestions
//
// PollChannelID: The channel ID to send polls
//
// BugChannelID: The channel ID to send bug reports
//
// SeasonRoleID: The role ID of the current season your server is on
//
// UpdateRoleID: The role ID for people to get when you release an update for something
//
//---------------DCP Questions Help---------------//
//------------------------------------------------//
//
// These are the questions for the Dead Chat Ping (DCP). To remove a question, remove the line you you don't like.
// To add a new question, you can replace the text of an existing one or add "question-here", to make a new question.
//
//------------End ofConfiguration Help------------//
//------------------------------------------------//