Various updates

- Switch to automap
- Add manifest settings
- Fix Proton (even though not currently usable with server)
This commit is contained in:
Greelan
2022-02-13 12:14:39 +11:00
parent ed3b68b11d
commit 9109b57a84
3 changed files with 230 additions and 156 deletions

View File

@@ -1,108 +1,167 @@
[
{
"DisplayName": "Server name",
"Category": "Server Settings",
"Description": "The name of the Server",
"Keywords": "name",
"FieldName": "servername",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "servername",
"IncludeInCommandLine": false,
"DefaultValue": "Powered by AMP",
"EnumValues": {}
"DisplayName":"Public IP",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ExternalIP",
"InputType":"text",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.PublicIP",
"IncludeInCommandLine":false
},
{
"DisplayName": "Password",
"Category": "Server Settings",
"Description": "The Password for the Server",
"Keywords": "password",
"FieldName": "serverpassword",
"InputType": "password",
"IsFlagArgument": false,
"ParamFieldName": "serverpassword",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
"DisplayName":"Server Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$ApplicationPort1",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"URL.Port",
"IncludeInCommandLine":false
},
{
"DisplayName": "Auto Save Interval",
"Category": "Server Settings",
"Description": "The Interval in which Auto saves are made (in seconds))",
"Keywords": "autosave",
"FieldName": "autosaveinterval",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "autosaveinterval",
"IncludeInCommandLine": false,
"DefaultValue": "900",
"EnumValues": {}
"DisplayName":"Console Port",
"Category":"Server Settings",
"Description":"",
"Keywords":"",
"FieldName":"$RemoteAdminPort",
"InputType":"number",
"Hidden":true,
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.ConsolePort",
"IncludeInCommandLine":false
},
{
"DisplayName": "MaxServerFramerate",
"Category": "Server Settings",
"Description": "The max framerate the server will allow for clients",
"Keywords": "fps",
"FieldName": "maxfps",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "maxfps",
"IncludeInCommandLine": false,
"DefaultValue": "34",
"EnumValues": {}
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"The name of the server as it appears publicly",
"Keywords":"name",
"FieldName":"ServerName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.ServerName",
"IncludeInCommandLine":false,
"DefaultValue":"Astroneer Server - Powered by AMP"
},
{
"DisplayName": "Max Players",
"Category": "Server Settings",
"Description": "The Maximum Player Count",
"Keywords": "max players",
"FieldName": "maxplayers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "maxplayers",
"IncludeInCommandLine": false,
"DefaultValue": "8",
"EnumValues": {}
"DisplayName":"Server Password",
"Category":"Server Settings",
"Description":"Password required to connect to the server. Default is no password",
"Keywords":"password",
"FieldName":"ServerPassword",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.ServerPassword",
"IncludeInCommandLine":false,
"DefaultValue":""
},
{
"DisplayName": "Public IP",
"Category": "Server Settings",
"Description": "Input your public server IP in here otherwise the server won't work.",
"Keywords": "Public IP",
"FieldName": "publicip",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "publicip",
"IncludeInCommandLine": false,
"DefaultValue": "INSERT YOUR PUBLIC IP HERE",
"EnumValues": {}
"DisplayName":"Console Password",
"Category":"Server Settings",
"Description":"Password required for remote console (admin) connections. NOTE: Change this after first installing the server!",
"Keywords":"console,admin,password",
"FieldName":"$RemoteAdminPassword",
"InputType":"RandomPassword",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.ConsolePassword",
"IncludeInCommandLine":false,
"DefaultValue":"Password123"
},
{
"DisplayName": "Owner Name",
"Category": "Server Settings",
"Description": "Input your Account name.",
"Keywords": "Owner Name",
"FieldName": "ownername",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "ownername",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
"DisplayName":"Owner Name",
"Category":"Server Settings",
"Description":"Steam name of the server owner (admin)",
"Keywords":"owner,name",
"FieldName":"OwnerName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.OwnerName",
"IncludeInCommandLine":false,
"DefaultValue":""
},
{
"DisplayName": "Owner GUID",
"Category": "Server Settings",
"Description": "Enter your GUID",
"Keywords": "Owner GUID",
"FieldName": "ownerguid",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "ownerguid",
"IncludeInCommandLine": false,
"DefaultValue": "",
"EnumValues": {}
"DisplayName":"Player Limit",
"Category":"Server Settings",
"Description":"Maximum number of players that may connect to the server. Cannot exceed 8",
"Keywords":"players,limit",
"FieldName":"$MaxUsers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroGameUserSettings.MaxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"8",
"Suffix":"players"
},
{
"DisplayName":"Game Save Interval",
"Category":"Server Settings",
"Description":"The interval between automatic server saves",
"Keywords":"autosave,save,interval",
"FieldName":"AutoSaveGameInterval",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.AutoSaveGameInterval",
"IncludeInCommandLine":false,
"DefaultValue":"900",
"Suffix":"seconds"
},
{
"DisplayName":"Backup Save Interval",
"Category":"Server Settings",
"Description":"The interval between automatic server backups",
"Keywords":"backup,interval",
"FieldName":"BackupSaveGamesInterval",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.BackupSaveGamesInterval",
"IncludeInCommandLine":false,
"DefaultValue":"7200",
"Suffix":"seconds"
},
{
"DisplayName":"Enable Whitelist",
"Category":"Server Settings",
"Description":"If enabled, unlisted players will not be able to connect",
"Keywords":"deny,unlisted",
"FieldName":"DenyUnlistedPlayers",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.DenyUnlistedPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Maximum Active Server Framerate",
"Category":"Server Settings",
"Description":"The maximum framerate that the server will allow when active",
"Keywords":"fps,framerate,active",
"FieldName":"MaxServerFramerate",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.MaxServerFramerate",
"IncludeInCommandLine":false,
"DefaultValue":"30.000000",
"Suffix":"fps"
},
{
"DisplayName":"Maximum Idle Server Framerate",
"Category":"Server Settings",
"Description":"The maximum framerate that the server will allow when idle",
"Keywords":"fps,framerate,idle",
"FieldName":"MaxServerIdleFramerate",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"/Script/Astro.AstroServerSettings.MaxServerIdleFramerate",
"IncludeInCommandLine":false,
"DefaultValue":"3.000000",
"Suffix":"fps"
}
]