Astroneer: fix port argument, other tidy-ups (#440)
This commit is contained in:
parent
7eb0d39067
commit
271dc64036
@ -1,31 +1,42 @@
|
||||
Meta.DisplayName=Astroneer
|
||||
Meta.Description=Astroneer Dedicated Server
|
||||
Meta.OS=Windows
|
||||
Meta.AarchSupport=Unknown
|
||||
Meta.Arch=x86_64
|
||||
Meta.Author=Greelan, Tueem
|
||||
Meta.URL=https://store.steampowered.com/app/361420/ASTRONEER/
|
||||
Meta.DisplayImageSource=steam:361420
|
||||
Meta.EndpointURIFormat=
|
||||
Meta.EndpointURIFormat=steam://connect/{0}
|
||||
Meta.ConfigManifest=astroneerconfig.json
|
||||
Meta.MetaConfigManifest=astroneermetaconfig.json
|
||||
Meta.ConfigRoot=astroneer.kvp
|
||||
Meta.MinAMPVersion=2.3.2.0
|
||||
Meta.SpecificDockerImage=
|
||||
Meta.DockerRequired=False
|
||||
Meta.DockerBaseReadOnly=False
|
||||
Meta.ContainerPolicy=NotSupported
|
||||
Meta.ContainerPolicyReason=Astroneer can currently only run under Wine/Proton on Linux (and therefore in Docker), but to do so requires disabling of encryption on server and clients. The AMP template is therefore not configured for Linux.
|
||||
Meta.ExtraSetupStepsURI=
|
||||
Meta.Prerequsites=[]
|
||||
Meta.ExtraContainerPackages=[]
|
||||
Meta.ConfigReleaseState=NotSpecified
|
||||
Meta.NoCommercialUsage=False
|
||||
Meta.ConfigVersion=0.0.0.0
|
||||
Meta.ReleaseNotes=
|
||||
Meta.BreakingReleaseNotes=
|
||||
App.DisplayName=Astroneer
|
||||
App.RootDir=./astroneer/
|
||||
App.BaseDirectory=./astroneer/728470/
|
||||
App.SteamWorkshopDownloadLocation=
|
||||
App.ExecutableWin=728470/Astro/Binaries/Win64/AstroServer-Win64-Shipping.exe
|
||||
App.ExecutableLinux=
|
||||
App.WorkingDir=728470/Astro/Binaries/Win64
|
||||
App.LinuxCommandLineArgs=
|
||||
App.WindowsCommandLineArgs=
|
||||
App.CommandLineArgs={{$PlatformArgs}} -Port={{$ApplicationPort1}} -ConsolePort={{$RemoteAdminPort}} {{$FormattedArgs}}
|
||||
App.CommandLineArgs={{$PlatformArgs}} Port={{$ApplicationPort1}} ConsolePort={{$RemoteAdminPort}} {{$FormattedArgs}} -log
|
||||
App.UseLinuxIOREDIR=False
|
||||
App.AppSettings={}
|
||||
App.EnvironmentVariables={"LD_LIBRARY_PATH":"./linux64:%LD_LIBRARY_PATH%","SteamAppId":"361420"}
|
||||
App.EnvironmentVariables={"LD_LIBRARY_PATH":"{{$FullBaseDir}}linux64:%LD_LIBRARY_PATH%","SteamAppId":"361420"}
|
||||
App.CommandLineParameterFormat=-{0}={1}
|
||||
App.CommandLineParameterDelimiter=
|
||||
App.ExitMethod=OS_CLOSE
|
||||
@ -37,36 +48,48 @@ App.HasReadableConsole=True
|
||||
App.SupportsLiveSettingsChanges=False
|
||||
App.LiveSettingChangeCommandFormat=set {0} "{1}"
|
||||
App.ApplicationIPBinding=0.0.0.0
|
||||
App.ApplicationPort1=8777
|
||||
App.ApplicationPort2=0
|
||||
App.ApplicationPort3=0
|
||||
App.RemoteAdminPort=8778
|
||||
App.Ports=[{"Protocol":"UDP","Port":7777,"Ref":"ApplicationPort1","Name":"Game Port","Description":"Port for game traffic"},{"Protocol":"TCP","Port":1234,"Ref":"RemoteAdminPort","Name":"Console Port","Description":"Port for raw TCP socket RCON traffic"}]
|
||||
App.AdminPortRef=0
|
||||
App.PrimaryApplicationPortRef=ApplicationPort1
|
||||
App.UniversalSleepApplicationUDPPortRef=ApplicationPort1
|
||||
App.UniversalSleepSteamQueryPortRef=0
|
||||
App.MaxUsers=8
|
||||
App.UseRandomAdminPassword=True
|
||||
App.UseRandomAdminPassword=False
|
||||
App.PersistRandomPassword=False
|
||||
App.RemoteAdminPassword=
|
||||
App.AdminMethod=STDIO
|
||||
App.AdminLoginTransform=None
|
||||
App.LoginTransformPrefix=
|
||||
App.RCONConnectDelaySeconds=5
|
||||
App.RCONConnectRetrySeconds=5
|
||||
App.RCONHeartbeatMinutes=0
|
||||
App.RCONHeartbeatCommand=ping
|
||||
App.TelnetLoginFormat={0}
|
||||
App.UpdateSources=[{"UpdateStageName":"SteamCMD Download","UpdateSourcePlatform":"All","UpdateSource":"SteamCMD","UpdateSourceData":"728470","UpdateSourceArgs":"361420","ForceDownloadPlatform":"Windows"}]
|
||||
App.PreStartStages=[]
|
||||
App.ForceUpdate=False
|
||||
App.ForceUpdateReason=
|
||||
App.Compatibility=None
|
||||
App.SteamUpdateAnonymousLogin=True
|
||||
App.SteamForceLoginPrompt=False
|
||||
App.RapidStartup=False
|
||||
App.MonitorChildProcess=False
|
||||
App.DumpFullChildProcessTree=False
|
||||
App.MonitorChildProcessWaitMs=100
|
||||
App.MonitorChildProcessName=
|
||||
App.SupportsUniversalSleep=False
|
||||
App.UniversalSleepApplicationUDPPort=27015
|
||||
App.UniversalSleepSteamQueryPort=27016
|
||||
App.WakeupMode=Any
|
||||
App.ApplicationReadyMode=Immediate
|
||||
App.TemplateMatchRegex={{(\$?[\w]+)}}
|
||||
Console.FilterMatchRegex=
|
||||
Console.FilterMatchReplacement=
|
||||
Console.ThrowawayMessageRegex=
|
||||
Console.AppReadyRegex=^\[\d\d:\d\d:\d\d\] \[INFO\] Ready.$
|
||||
Console.UserJoinRegex=^\[\d\d:\d\d:\d\d\] \[INFO\] "(?<username>.+?)" \((?<userid>.+?)\) connected from \[(?<endpoint>.+?)\]$
|
||||
Console.UserLeaveRegex=^\[\d\d:\d\d:\d\d\] \[INFO\] "(?<username>.+?)" \((?<userid>.+?)\) disconnected \(Reason: (?<reason>.+?)\)$
|
||||
Console.UserChatRegex=^\[\d\d:\d\d:\d\d\] \[CHAT\] <(?<username>.+?)> (?<message>.+)$
|
||||
Console.AppReadyRegex=^$
|
||||
Console.UserJoinRegex=^$
|
||||
Console.UserLeaveRegex=^$
|
||||
Console.UserChatRegex=^$
|
||||
Console.UpdateAvailableRegex=^\[\d\d:\d\d:\d\d\] \[INFO\] A new server update is available! v[\d\.]+.$
|
||||
Console.MetricsRegex=
|
||||
Console.SuppressLogAtStart=False
|
||||
Console.ActivateLogRegex=
|
||||
Console.UserActions={}
|
||||
@ -75,3 +98,4 @@ Limits.SleepOnStart=False
|
||||
Limits.SleepDelayMinutes=5
|
||||
Limits.DozeDelay=2
|
||||
Limits.AutoRetryCount=5
|
||||
Limits.SleepStartThresholdSeconds=25
|
||||
|
@ -42,7 +42,7 @@
|
||||
"DisplayName":"Server Name",
|
||||
"Category":"Server Settings",
|
||||
"Description":"The name of the server as it appears publicly",
|
||||
"Keywords":"name",
|
||||
"Keywords":"name,servername",
|
||||
"FieldName":"ServerName",
|
||||
"InputType":"text",
|
||||
"IsFlagArgument":false,
|
||||
@ -55,7 +55,7 @@
|
||||
"DisplayName":"Server Password",
|
||||
"Category":"Server Settings",
|
||||
"Description":"Password required to connect to the server. Default is no password",
|
||||
"Keywords":"password",
|
||||
"Keywords":"password,serverpassword",
|
||||
"FieldName":"ServerPassword",
|
||||
"InputType":"password",
|
||||
"IsFlagArgument":false,
|
||||
@ -67,20 +67,21 @@
|
||||
{
|
||||
"DisplayName":"Console Password",
|
||||
"Category":"Server Settings",
|
||||
"Description":"See the Security and Privacy menu for configurable options for the server's RCON",
|
||||
"Keywords":"console,password,rcon",
|
||||
"FieldName":"$RemoteAdminPassword",
|
||||
"InputType":"hidden",
|
||||
"Description":"Password required to connect to the server's RCON (raw TCP socket). Default is a strong random password",
|
||||
"Keywords":"console,password,rcon,consolepassword",
|
||||
"FieldName":"ConsolePassword",
|
||||
"InputType":"password",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroServerSettings.ConsolePassword",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"{{newguid()}}",
|
||||
"EnumValues":{}
|
||||
},
|
||||
{
|
||||
"DisplayName":"Owner Name",
|
||||
"Category":"Server Settings",
|
||||
"Description":"Steam name of the server owner (admin)",
|
||||
"Keywords":"owner,name",
|
||||
"Keywords":"owner,name,ownername",
|
||||
"FieldName":"OwnerName",
|
||||
"InputType":"text",
|
||||
"IsFlagArgument":false,
|
||||
@ -92,29 +93,32 @@
|
||||
{
|
||||
"DisplayName":"Player Limit",
|
||||
"Category":"Server Settings",
|
||||
"Description":"Maximum number of players that may connect to the server. Cannot exceed 8",
|
||||
"Keywords":"players,limit",
|
||||
"Description":"Maximum number of players that may connect to the server at one time",
|
||||
"Keywords":"players,limit,maxplayers",
|
||||
"FieldName":"$MaxUsers",
|
||||
"InputType":"number",
|
||||
"MinValue":"2",
|
||||
"MaxValue":"8",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroGameUserSettings.MaxPlayers",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"8",
|
||||
"Placeholder":"8",
|
||||
"Suffix":"players",
|
||||
"EnumValues":{},
|
||||
"MinValue":"1"
|
||||
"EnumValues":{}
|
||||
},
|
||||
{
|
||||
"DisplayName":"Game Save Interval",
|
||||
"Category":"Server Settings",
|
||||
"Description":"The interval between automatic server saves",
|
||||
"Keywords":"autosave,save,interval",
|
||||
"Keywords":"autosave,save,interval,autosavegameinterval",
|
||||
"FieldName":"AutoSaveGameInterval",
|
||||
"InputType":"number",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroServerSettings.AutoSaveGameInterval",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"900",
|
||||
"Placeholder":"900",
|
||||
"Suffix":"seconds",
|
||||
"EnumValues":{}
|
||||
},
|
||||
@ -122,13 +126,14 @@
|
||||
"DisplayName":"Backup Save Interval",
|
||||
"Category":"Server Settings",
|
||||
"Description":"The interval between automatic server backups",
|
||||
"Keywords":"backup,interval",
|
||||
"Keywords":"backup,interval,backupsavegamesinterval",
|
||||
"FieldName":"BackupSaveGamesInterval",
|
||||
"InputType":"number",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroServerSettings.BackupSaveGamesInterval",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"7200",
|
||||
"Placeholder":"7200",
|
||||
"Suffix":"seconds",
|
||||
"EnumValues":{}
|
||||
},
|
||||
@ -136,7 +141,7 @@
|
||||
"DisplayName":"Enable Whitelist",
|
||||
"Category":"Server Settings",
|
||||
"Description":"If enabled, unlisted players will not be able to connect",
|
||||
"Keywords":"deny,unlisted",
|
||||
"Keywords":"deny,unlisted,denyunlistedplayers",
|
||||
"FieldName":"DenyUnlistedPlayers",
|
||||
"InputType":"checkbox",
|
||||
"IsFlagArgument":false,
|
||||
@ -152,13 +157,14 @@
|
||||
"DisplayName":"Maximum Active Server Framerate",
|
||||
"Category":"Server Settings",
|
||||
"Description":"The maximum framerate that the server will allow when active",
|
||||
"Keywords":"fps,framerate,active",
|
||||
"Keywords":"fps,framerate,active,maxserverframerate",
|
||||
"FieldName":"MaxServerFramerate",
|
||||
"InputType":"number",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroServerSettings.MaxServerFramerate",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"30.000000",
|
||||
"Placeholder":"30.000000",
|
||||
"Suffix":"fps",
|
||||
"EnumValues":{}
|
||||
},
|
||||
@ -166,13 +172,14 @@
|
||||
"DisplayName":"Maximum Idle Server Framerate",
|
||||
"Category":"Server Settings",
|
||||
"Description":"The maximum framerate that the server will allow when idle",
|
||||
"Keywords":"fps,framerate,idle",
|
||||
"Keywords":"fps,framerate,idle,maxserveridleframerate",
|
||||
"FieldName":"MaxServerIdleFramerate",
|
||||
"InputType":"number",
|
||||
"IsFlagArgument":false,
|
||||
"ParamFieldName":"/Script/Astro.AstroServerSettings.MaxServerIdleFramerate",
|
||||
"IncludeInCommandLine":false,
|
||||
"DefaultValue":"3.000000",
|
||||
"Placeholder":"3.000000",
|
||||
"Suffix":"fps",
|
||||
"EnumValues":{}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user