AC
This commit is contained in:
parent
b1d6d01ea6
commit
f75fb70990
@ -82,6 +82,18 @@
|
|||||||
"DefaultValue":"",
|
"DefaultValue":"",
|
||||||
"EnumValues":{}
|
"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",
|
"DisplayName":"Savegame Name",
|
||||||
"Category":"Server Settings",
|
"Category":"Server Settings",
|
||||||
@ -149,5 +161,33 @@
|
|||||||
"False":"False",
|
"False":"False",
|
||||||
"True":"True"
|
"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":{}
|
||||||
}
|
}
|
||||||
]
|
]
|
@ -1,5 +1,6 @@
|
|||||||
[/Script/AstroColony.EHServerSubsystem]
|
[/Script/AstroColony.EHServerSubsystem]
|
||||||
ServerPassword=
|
ServerPassword=
|
||||||
|
Seed=
|
||||||
MapName=MyAstroColony
|
MapName=MyAstroColony
|
||||||
MaxPlayers=5
|
MaxPlayers=5
|
||||||
SavegameName=MyAstroColony
|
SavegameName=MyAstroColony
|
||||||
@ -8,3 +9,5 @@ AdminList=
|
|||||||
SharedTechnologies=True
|
SharedTechnologies=True
|
||||||
OxygenConsumption=True
|
OxygenConsumption=True
|
||||||
FreeConstruction=False
|
FreeConstruction=False
|
||||||
|
AutosaveInterval=5.0
|
||||||
|
AutosavesCount=10
|
||||||
|
Loading…
Reference in New Issue
Block a user