Initial Starbound Generic Config (#134)

* Initial Starbound Generic Config

This is Windows only at the moment due to the working directory only able to point at one location. Windows is under win64 and Linux is under linux directories.

* Finalize Settings

* Finalize Settings

* Update starbound.kvp

* Update starbound.kvp
This commit is contained in:
IceOfWraith
2022-09-22 17:58:02 -05:00
committed by GitHub
parent 5286123f1f
commit 4733791277
4 changed files with 284 additions and 0 deletions

144
starboundconfig.json Normal file
View File

@@ -0,0 +1,144 @@
[
{
"DisplayName": "Server Name",
"Category": "Starbound - Settings",
"Description": "The name of the server.",
"Keywords": "Server, name",
"FieldName": "Name",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "serverName",
"IncludeInCommandLine": false,
"DefaultValue": "AMP Starbound Server",
"EnumValues": {}
},
{
"DisplayName": "Max Players",
"Category": "Starbound - Settings",
"Description": "Max number of players connected at one time.",
"Keywords": "max,players,users",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "maxPlayers",
"IncludeInCommandLine": false,
"DefaultValue": "",
"Placeholder": "8"
},
{
"DisplayName": "Server Port",
"Category": "Hidden Settings",
"Description": "UDP port for game traffic.",
"Keywords": "",
"FieldName": "$gameServerPort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "gameServerPort",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Query Port",
"Category": "Hidden Settings",
"Description": "UDP port for Steam server list features.",
"Keywords": "",
"FieldName": "$gameServerPort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "queryServerPort",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "RCON Port",
"Category": "Hidden Settings",
"Description": "UDP port for RCON connection.",
"Keywords": "",
"FieldName": "$rconServerPort",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "rconServerPort",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "RCON Password",
"Category": "Hidden Settings",
"Description": "RCON Password.",
"Keywords": "",
"FieldName": "$RemoteAdminPassword",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "rconServerPassword",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "RCON Enabled",
"Category": "Hidden Settings",
"Description": "Allows RCON connectivity.",
"Keywords": "",
"FieldName": "runRconServer",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "runRconServer",
"IncludeInCommandLine": false,
"DefaultValue": "true",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "RCON Timeout",
"Category": "Hidden Settings",
"Description": "RCON Timeout.",
"Keywords": "",
"FieldName": "rconServerTimeout",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "rconServerTimeout",
"IncludeInCommandLine": false,
"DefaultValue": "0",
"EnumValues": {},
"Hidden": true
},
{
"DisplayName": "Admin Commands",
"Category": "Starbound - Settings",
"Description": "Allows the usage of administrator commands on the server.",
"Keywords": "admin,commands",
"FieldName": "allowAdminCommands",
"InputType": "checkbox",
"DefaultValue": "true",
"IsFlagArgument": false,
"ParamFieldName": "allowAdminCommands",
"IncludeInCommandLine": false,
"EnumValues": {
"True": "true",
"False": "false"
}
},
{
"DisplayName": "Admin Commands for Anyone",
"Category": "Starbound - Settings",
"Description": "Allows anyone logged into the server to have access to the administrator console.",
"Keywords": "admin,commands,for,anyone",
"FieldName": "allowAdminCommandsFromAnyone",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "allowAdminCommandsFromAnyone",
"DefaultValue": "false",
"IncludeInCommandLine": false,
"EnumValues": {
"True": "true",
"False": "false"
}
}
]