Server Arguments and descriptions

This commit is contained in:
Destructor 2023-08-30 22:48:01 +02:00
parent 7472687593
commit d9fb23c0da

View File

@ -4,7 +4,7 @@
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2023-08-30T20:53:10+02:00",
"exported_at": "2023-08-30T22:44:12+02:00",
"name": "BattleBit Remastered",
"author": "contact@clan-rmg.com",
"description": "BattleBit Remastered Dedicated Server Wine Debian",
@ -15,7 +15,7 @@
"ghcr.io\/parkervcp\/yolks:wine_staging": "ghcr.io\/parkervcp\/yolks:wine_staging"
},
"file_denylist": [],
"startup": "cd \/home\/container\/ ; winetricks sound=disabled; export WINEARCH=\"win64\"; export WINEDLLOVERRIDES=\"mscoree=n,b;mshtml=n,b\"; wine \/home\/container\/BattleBit.exe -batchmode -nographics \"-Name=\"{{SERVER_NAME}}\"\" \"-Port={{SERVER_PORT}}\" \"-Hz=60\" \"-AntiCheat=EAC\" \"-MaxPing=500\" \"-VoxelMode=false\" \"-ApiEndPoint=0.0.0.0:{{SERVER_APIPORT}}\" \"-FirstMap={{SERVER_FIRSTMAP}}\" \"-FirstGamemode={{SERVER_FIRSTGAMEMODE}}\" \"-FixedSize={{SERVER_FIXEDSIZE}}\" \"-FirstSize={{SERVER_FIRSTSIZE}}\" \"-MaxSize={{SERVER_MAXSIZE}}\" \"-Password=\"{{SERVER_PASSWORD}}\"\" \"-MaxPlayers={{SERVER_MAXPLAYERS}}\"",
"startup": "cd \/home\/container\/ ; winetricks sound=disabled; export WINEARCH=\"win64\"; export WINEDLLOVERRIDES=\"mscoree=n,b;mshtml=n,b\"; wine \/home\/container\/BattleBit.exe -batchmode -nographics \"-Name=\"{{SERVER_NAME}}\"\" \"-Port={{SERVER_PORT}}\" \"-Hz={{SERVER_RATEHZ}}\" \"-AntiCheat=EAC\" \"-MaxPing={{SERVER_MAXPING}}\" \"-VoxelMode={{SERVER_VOXELMODE}}\" \"-ApiEndPoint=0.0.0.0:{{SERVER_APIPORT}}\" \"-apitoken={{SERVER_APITOCKEN}}\" \"-FirstMap={{SERVER_FIRSTMAP}}\" \"-FirstGamemode={{SERVER_FIRSTGAMEMODE}}\" \"-FixedSize={{SERVER_FIXEDSIZE}}\" \"-FirstSize={{SERVER_FIRSTSIZE}}\" \"-MaxSize={{SERVER_MAXSIZE}}\" \"-Password=\"{{SERVER_PASSWORD}}\"\" \"-MaxPlayers={{SERVER_MAXPLAYERS}}\"",
"config": {
"files": "{}",
"startup": "{\r\n \"done\": \"Successfully registered to steam servers\"\r\n}",
@ -92,12 +92,12 @@
},
{
"name": "Max Players",
"description": "",
"description": "Maximum number of players",
"env_variable": "SERVER_MAXPLAYERS",
"default_value": "128",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric|digits_between:1,6",
"rules": "required|numeric|digits_between:1,254",
"field_type": "text"
},
{
@ -132,47 +132,47 @@
},
{
"name": "Default Size Map",
"description": "",
"description": "TINY - 8v8\r\nSMALL - 16v16\r\nMEDIUM - 32v32\r\nBIG - 64v64\r\nULTRA - 127v127",
"env_variable": "SERVER_FIXEDSIZE",
"default_value": "tiny",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:64",
"rules": "required|string|in:tiny,small,medium,big,ultra",
"field_type": "text"
},
{
"name": "First Max Size",
"description": "",
"description": "TINY - 8v8\r\nSMALL - 16v16\r\nMEDIUM - 32v32\r\nBIG - 64v64\r\nULTRA - 127v127",
"env_variable": "SERVER_FIRSTSIZE",
"default_value": "tiny",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:64",
"rules": "required|string|in:tiny,small,medium,big,ultra",
"field_type": "text"
},
{
"name": "Max Size Map",
"description": "",
"description": "TINY - 8v8\r\nSMALL - 16v16\r\nMEDIUM - 32v32\r\nBIG - 64v64\r\nULTRA - 127v127",
"env_variable": "SERVER_MAXSIZE",
"default_value": "tiny",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:64",
"rules": "required|string|in:tiny,small,medium,big,ultra",
"field_type": "text"
},
{
"name": "First GameMode",
"description": "",
"description": "CONQ : CONQUEST | INFCONQ : INFARTRY CONQUEST | DOMI : DOMINATION | RUSH : RUSH | CTF : CAPTURE THE FLAG | FRONTLINE : FRONTLINE",
"env_variable": "SERVER_FIRSTGAMEMODE",
"default_value": "CONQ",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:64",
"rules": "required|string|in:CONQ,INFCONQ,DOMI,RUSH,CTF,FRONTLINE",
"field_type": "text"
},
{
"name": "First Map",
"description": "",
"description": "Server startup MAP",
"env_variable": "SERVER_FIRSTMAP",
"default_value": "Eduardovo",
"user_viewable": true,
@ -182,7 +182,7 @@
},
{
"name": "SteamCMD Branch",
"description": "",
"description": "Community-testing branch for test server and API Test | Community-server live branch for community server (do not use currently)",
"env_variable": "SRCDS_BETAID",
"default_value": "community-testing",
"user_viewable": true,
@ -199,6 +199,46 @@
"user_editable": true,
"rules": "required|numeric|max:65535",
"field_type": "text"
},
{
"name": "VoxelMode",
"description": "",
"env_variable": "SERVER_VOXELMODE",
"default_value": "false",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|in:true,false",
"field_type": "text"
},
{
"name": "Max Ping",
"description": "Maximum ping allowed on the server",
"env_variable": "SERVER_MAXPING",
"default_value": "500",
"user_viewable": true,
"user_editable": true,
"rules": "required|numeric|digits_between:1,1000",
"field_type": "text"
},
{
"name": "Server Hz",
"description": "Hz of the server",
"env_variable": "SERVER_RATEHZ",
"default_value": "60",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|in:60,120,240",
"field_type": "text"
},
{
"name": "API Token",
"description": "Token generated by API",
"env_variable": "SERVER_APITOCKEN",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:20",
"field_type": "text"
}
]
}