-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
27 lines (27 loc) · 892 Bytes
/
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
module.exports = {
database : {
host : 'localhost',
user : 'user',
password : 'password',
database : 'database'
},
modules : {
//* Recalculates Stats (Ranked & Total Score, Performance, Playcount)
//! This is the most time consuming module. Depending on how many modes you have and how many users are playing on the server.
//! Please use this module only when you do pp changes or move scores around.
stats: true,
//* Calculates Ranks for Leaderboard
leaderboard: true,
//* Removes expired donator tags
donator: true,
//* Adjusts badges
//! Only use if you setup privileges and badges yourself
badges: true,
//* Updates Score Counter (Admin Panel)
scores: true,
},
relax: true,
autopilot: true,
v2: true,
debug: false
}