Add Conan Exiles (draft)

This brings back the work that was started on https://github.com/CubeCoders/AMPTemplates/pull/3 previously. It has been migrated to use the new generic settings. It currently only works on Windows, but has a baseline started for Proton. Settings have not been added to the GUI yet.
This commit is contained in:
IceOfWraith
2022-01-29 13:12:18 -06:00
parent 9b51cb0b5a
commit 8bb6c59923
2 changed files with 69 additions and 0 deletions

28
conan-exilesconfig.json Normal file
View File

@@ -0,0 +1,28 @@
[
{
"DisplayName": "Server Name",
"Category": "Server Settings",
"Description": "The 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": "Max Players",
"Category": "Server Settings",
"Description": "The maximum amount of players that can be on the server at once",
"Keywords": "players",
"FieldName": "$MaxUsers",
"InputType": "number",
"IsFlagArgument": false,
"ParamFieldName": "$MaxUsers",
"IncludeInCommandLine": true,
"DefaultValue": "100",
"EnumValues": {}
}
]