-
Notifications
You must be signed in to change notification settings - Fork 2
/
configschema.json
49 lines (48 loc) · 1.21 KB
/
configschema.json
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"port": {
"type": "number",
"description": "Port to listen for CSGO Game Integration, Make sure this is the same port as the CSGO GI config",
"default": 3000
},
"hlaeport": {
"type": "number",
"description": "Port to listen for HLAE game events",
"default": 31337
},
"steamApiKey": {
"type": "string",
"description": "Steam API key used to get steam profile pictures (https://steamcommunity.com/dev/apikey)",
"default": "STEAM-API-KEY"
},
"gameSettings": {
"type": "object",
"description": "Various server setting information to properly display data",
"properties": {
"plantTime": {
"type": "number",
"description": "Time taken to plant bomb",
"default": 3
},
"bombTime": {
"type": "number",
"description": "Time taken to for bomb to explode",
"default": 40
},
"noKitTime": {
"type": "number",
"description": "Time taken to defuse without a kit",
"default": 10
},
"kitTime": {
"type": "number",
"description": "Time taken to defuse with a kit",
"default": 5
}
}
}
}
}