Browse Source

fix(armar): adapts config to the new specification (#135)

* feat: add ets2 and ats

* fix(armar): adapts config to the new specification

* fix(armar): back to legacy a2s settings

* fix(armar): new a2s settings

* fix(armar): fix serverMinGrassDistance value
pull/137/head
Marcin Jakubowski 2 years ago
committed by Daniel Gibbs
parent
commit
10069d6d49
  1. 38
      armar/server.json

38
armar/server.json

@ -1,28 +1,36 @@
{ {
"dedicatedServerId": "", "bindAddress": "0.0.0.0",
"region": "EU", "bindPort": 2001,
"gameHostBindAddress": "0.0.0.0", "publicAddress": "",
"gameHostBindPort": 2001, "publicPort": 2001,
"gameHostRegisterBindAddress": "", "a2s": {
"gameHostRegisterPort": 2001, "address": "0.0.0.0",
"adminPassword": "ADMINPASSWORD", "port": 17777
},
"game": { "game": {
"name": "SERVERNAME", "name": "SERVERNAME",
"password": "", "password": "",
"passwordAdmin": "ADMINPASSWORD",
"scenarioId": "{ECC61978EDCC2B5A}Missions/23_Campaign.conf", "scenarioId": "{ECC61978EDCC2B5A}Missions/23_Campaign.conf",
"playerCountLimit": 16, "maxPlayers": 64,
"autoJoinable": false,
"visible": true, "visible": true,
"supportedPlatforms": [
"PLATFORM_PC",
"PLATFORM_XBL"
],
"gameProperties": { "gameProperties": {
"serverMaxViewDistance": 1600, "serverMaxViewDistance": 2500,
"serverMinGrassDistance": 0, "serverMinGrassDistance": 100,
"networkViewDistance": 500, "networkViewDistance": 1500,
"disableThirdPerson": false, "disableThirdPerson": false,
"fastValidation": true, "fastValidation": true,
"battlEye": true "battlEye": true,
"VONDisableUI": false,
"VONDisableDirectSpeechUI": false
}, },
"mods": [] "mods": []
}, },
"a2sQueryEnabled": true, "operating": {
"steamQueryPort": 17777 "lobbyPlayerSynchronise": true
}
} }

Loading…
Cancel
Save