-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig-sample.json
More file actions
44 lines (44 loc) · 835 Bytes
/
config-sample.json
File metadata and controls
44 lines (44 loc) · 835 Bytes
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
{
"HMAC": {
"SHARED_SECRET": "0000000000000000000000000000000000000000000000000000000000000000"
},
"LOGIN": {
"PORT": 1337,
"HOST": "127.0.0.1"
},
"IPC": {
"RECONNECT_MS": 1000,
"HOST": "127.0.0.1",
"PORT": 2000,
"SOCKET": "game.sock"
},
"SERVER": {
"EXTERNAL_HOST": "ws://127.0.0.1:2222",
"VERSION": "0.0.0",
"CLIENT_VERSION": "740",
"DATE": "2022-03-24",
"PORT": 2222,
"HOST": "127.0.0.1",
"ALLOW_MAXIMUM_CONNECTIONS": 50,
"MS_TICK_INTERVAL": 50,
"MS_SHUTDOWN_SCHEDULE": 1000,
"MAX_PACKET_SIZE": 1024
},
"WORLD": {
"CHUNK": {
"WIDTH": 9,
"HEIGHT": 7,
"DEPTH": 8
},
"CLOCK": {
"SPEED": 6,
"START": "08:00"
},
"SPAWNS": {
"ENABLED": true
},
"NPCS": {
"ENABLED": true
}
}
}