AMPTemplates/conan-exilesconfig.json
James Manker c8df970a0f Fixed QueryPort and EnumValues blanks
I somehow removed the QueryPort through all the changes with the command line args. It's back now. Also added default blank values for EnumValues to avoid any possible issues.
2022-04-29 11:35:08 -05:00

153 lines
5.1 KiB
JSON

[
{
"DisplayName":"Server Name",
"Category":"Server Settings",
"Description":"Name of the server shown in the server browser",
"Keywords":"name",
"FieldName":"ServerName",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"ServerName",
"IncludeInCommandLine":true,
"DefaultValue":"Conan Exiles Server - Powered by AMP",
"EnumValues":{}
},
{
"DisplayName":"Map",
"Category":"Server Settings",
"Description":"Sets the map to load on startup",
"Keywords":"map",
"FieldName":"Map",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"Map",
"IncludeInCommandLine":false,
"DefaultValue":"/Game/Maps/ConanSandbox/ConanSandbox",
"EnumValues":{
"":"Custom",
"/Game/Maps/ConanSandbox/ConanSandbox":"Exiled Lands",
"/Game/DLC_EXT/DLC_Siptah/Maps/DLC_Isle_of_Siptah":"Isle of Siptah"
}
},
{
"DisplayName":"Custom Map",
"Category":"Server Settings",
"Description":"If using a custom map, enter it here. Choose Custom from the Map option.",
"Keywords":"custom,map",
"FieldName":"CustomMap",
"InputType":"text",
"IsFlagArgument":false,
"ParamFieldName":"CustomMap",
"IncludeInCommandLine":false,
"DefaultValue":"",
"Placeholder":"/Game/Mods/Savage_Wilds/Savage_Wilds",
"EnumValues":{}
},
{
"DisplayName":"Player Limit",
"Category":"Server Settings",
"Description":"Maximum number of players that may connect to the server",
"Keywords":"maximum,players",
"FieldName":"$MaxUsers",
"InputType":"number",
"IsFlagArgument":false,
"ParamFieldName":"MaxPlayers",
"IncludeInCommandLine":false,
"DefaultValue":"40",
"Suffix":"players",
"EnumValues":{}
},
{
"DisplayName":"Server Password",
"Category":"Server Settings",
"Description":"Password to connect to the server. Default is no password",
"Keywords":"password",
"FieldName":"ServerPassword",
"InputType":"password",
"IsFlagArgument":false,
"ParamFieldName":"ServerPassword",
"IncludeInCommandLine":true,
"DefaultValue":"",
"SkipIfEmpty": true,
"EnumValues":{}
},
{
"DisplayName":"Admin Password",
"Category":"Server Settings",
"Description":"In-game \"admin\" user password (not the server password). NOTE: You must set this to allow use of the in-game admin panel. Change this after installing the server!",
"Keywords":"admin,password",
"FieldName":"AdminPassword",
"InputType":"RandomPassword",
"IsFlagArgument":false,
"ParamFieldName":"ServerSettings.AdminPassword",
"IncludeInCommandLine":false,
"DefaultValue":"Password123",
"Required":true,
"EnumValues":{}
},
{
"DisplayName":"RCON Password",
"Category":"Server Settings",
"Description":"Password to connect to RCON. NOTE: You should change this after first installing the server",
"Keywords":"rcon,password",
"FieldName":"$RemoteAdminPassword",
"InputType":"RandomPassword",
"IsFlagArgument":false,
"ParamFieldName":"RconPassword",
"IncludeInCommandLine":false,
"DefaultValue":"Password123",
"EnumValues":{}
},
{
"DisplayName":"Server Region",
"Category":"Server Settings",
"Description":"Sets the server region, which affects how the server is filtered in the server list",
"Keywords":"region",
"FieldName":"serverRegion",
"InputType":"enum",
"IsFlagArgument":false,
"ParamFieldName":"ServerSettings.serverRegion",
"IncludeInCommandLine":false,
"DefaultValue":"0",
"EnumValues":{
"0":"Europe",
"1":"North America",
"2":"Asia",
"3":"Australia",
"4":"South America",
"5":"Japan"
}
},
{
"DisplayName":"Enable BattlEye",
"Category":"Server Settings",
"Description":"If enabled, BattlEye cheat protection will apply to the server",
"Keywords":"battleye,cheats",
"FieldName":"IsBattlEyeEnabled",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"ServerSettings.IsBattlEyeEnabled",
"IncludeInCommandLine":false,
"DefaultValue":"False",
"EnumValues":{
"True":"True",
"False":"False"
}
},
{
"DisplayName":"Enable Valve Anti-cheat (Steam VAC)",
"Category":"Server Settings",
"Description":"",
"Keywords":"VAC,cheat",
"FieldName":"IsVACEnabled",
"InputType":"checkbox",
"IsFlagArgument":false,
"ParamFieldName":"ServerSettings.IsVACEnabled",
"IncludeInCommandLine":false,
"DefaultValue":"True",
"EnumValues":{
"True":"True",
"False":"False"
}
}
]