This commit is contained in:
Greelan 2023-11-07 13:03:14 +11:00
parent b1d6d01ea6
commit f75fb70990
2 changed files with 43 additions and 0 deletions

View File

@ -82,6 +82,18 @@
"DefaultValue":"",
"EnumValues":{}
},
{
"DisplayName":"Seed",
"Category":"Server Settings",
"Description":"Sets a seed to create a new savegame with. Default is a random seed",
"Keywords":"seed",
"FieldName":"Seed",
"InputType":"number",
"MinValue":"1",
"ParamFieldName":"/Script/AstroColony.EHServerSubsystem.Seed",
"DefaultValue":"{{randomdigits(8)}}",
"EnumValues":{}
},
{
"DisplayName":"Savegame Name",
"Category":"Server Settings",
@ -149,5 +161,33 @@
"False":"False",
"True":"True"
}
},
{
"DisplayName":"Autosave Interval",
"Category":"Server Settings",
"Description":"Sets the server autosave interval",
"Keywords":"server,autosave,interval,AutosaveInterval",
"FieldName":"AutosaveInterval",
"InputType":"number",
"MinValue":"1",
"ParamFieldName":"/Script/AstroColony.EHServerSubsystem.AutosaveInterval",
"DefaultValue":"5.0",
"Placeholder":"5.0",
"Suffix":"minutes",
"EnumValues":{}
},
{
"DisplayName":"Autosave Count",
"Category":"Server Settings",
"Description":"Sets the limit on the number of autosave copies to store",
"Keywords":"server,save,autosave,limit,count,AutosavesCount",
"FieldName":"AutosavesCount",
"InputType":"number",
"MinValue":"0",
"ParamFieldName":"/Script/AstroColony.EHServerSubsystem.AutosavesCount",
"DefaultValue":"10",
"Placeholder":"10",
"Suffix":"autosaves",
"EnumValues":{}
}
]

View File

@ -1,5 +1,6 @@
[/Script/AstroColony.EHServerSubsystem]
ServerPassword=
Seed=
MapName=MyAstroColony
MaxPlayers=5
SavegameName=MyAstroColony
@ -8,3 +9,5 @@ AdminList=
SharedTechnologies=True
OxygenConsumption=True
FreeConstruction=False
AutosaveInterval=5.0
AutosavesCount=10