-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexampleConfig.json
More file actions
53 lines (52 loc) · 1.22 KB
/
exampleConfig.json
File metadata and controls
53 lines (52 loc) · 1.22 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
# This is an example of config file.
# It should be put in serverDirectory/config as 'config.json'
# Make sure to remove these comments once you done with configuration, thank you
{
"global": {
"configuration": {
"loc": "en",
"playerbased-loc": false,
"mongodb-ip": "mongodb://localhost:27017/",
"type": "default"
}
},
"mindustry": {
"commands": {
"all-commands": true,
"command-whitelist": {
# This system uses command name as a key. Example - "revert": true
# Makes sense only if "all-commands" is false
}
},
"ranks": {
"enabled": true,
"secure-ranks": true
},
"menus": {
"welcome-menu": true,
"welcome-menu-title": "title",
"welcome-menu-text": "text"
},
"griefing-warnings": true,
"better-bans": true,
"time-counter": true
},
"discord": {
"enabled": true,
"configuration": {
"mindustry-moderator-id": 123,
"mindustry-console-id": 123,
"prefix": "pfx",
"invite-url": "url",
"token": "token"
},
"commands": {
"all-commands": true,
"command-whitelist": {}
},
"log": {
"message-channel-id": 123,
"ban-channel-id": 123
}
}
}