AMPTemplates/project-zomboidconfig.json

83 lines
2.9 KiB
JSON
Raw Normal View History

2021-12-23 07:57:17 +01:00
[
{
"DisplayName": "Admin Password",
"Category": "Server Settings",
2021-12-25 07:39:39 +01:00
"Description": "In-game \"admin\" user password (not the server password). You should change this after first installing the server",
2021-12-26 00:34:01 +01:00
"Keywords": "admin,password",
2021-12-23 07:57:17 +01:00
"FieldName": "adminpassword",
2021-12-23 11:41:21 +01:00
"InputType": "password",
2021-12-23 07:57:17 +01:00
"IsFlagArgument": false,
"ParamFieldName": "adminpassword",
"IncludeInCommandLine": true,
2021-12-23 11:19:37 +01:00
"DefaultValue": "Password123"
2021-12-25 07:39:00 +01:00
},
2021-12-25 09:42:30 +01:00
{
2021-12-25 07:39:00 +01:00
"DisplayName": "SteamVAC",
"Category": "Server Settings",
"Description": "Enable SteamVAC",
"Keywords": "steamvac",
"FieldName": "steamvac",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "steamvac",
"IncludeInCommandLine": true,
"DefaultValue": "true",
"EnumValues": {
"false": "False",
"true": "True"
2021-12-25 07:39:00 +01:00
}
},
2021-12-25 09:42:30 +01:00
{
2021-12-25 07:39:00 +01:00
"DisplayName": "Steam Integration",
"Category": "Server Settings",
"Description": "Enable Steam integration",
2021-12-26 00:34:01 +01:00
"Keywords": "steam,integration",
2021-12-25 07:39:00 +01:00
"FieldName": "SteamInt",
"InputType": "checkbox",
"IsFlagArgument": false,
"ParamFieldName": "SteamInt",
"IncludeInCommandLine": false,
"DefaultValue": "1",
"EnumValues": {
"0": "False",
"1": "True"
2021-12-25 07:39:00 +01:00
}
},
{
2021-12-29 22:04:22 +01:00
"DisplayName": "Memory Limit (MB)",
2021-12-25 07:39:00 +01:00
"Category": "Server Settings",
2021-12-29 22:04:22 +01:00
"Description": "Java's maximum heap size",
"Keywords": "maximum,memory,limit",
2021-12-25 20:57:05 +01:00
"FieldName": "MaxMemory",
2021-12-25 07:39:00 +01:00
"InputType": "number",
"IsFlagArgument": false,
2021-12-25 20:57:05 +01:00
"ParamFieldName": "MaxMemory",
2021-12-25 07:39:00 +01:00
"IncludeInCommandLine": false,
2021-12-25 21:36:21 +01:00
"DefaultValue": "4096"
},
{
"DisplayName": "Additional Java Startup Parameters",
"Category": "Server Settings",
"Description": "Additional Java arguments (not server arguments) as startup parameters that are not otherwise set by AMP. Use with care. Example: -Ddebug",
"Keywords": "custom,java,arguments,parameters",
"FieldName": "CustomJavaArgs",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "CustomJavaArgs",
"IncludeInCommandLine": false,
2022-01-11 07:49:01 +01:00
"DefaultValue": " "
},
{
"DisplayName": "Additional Server Startup Parameters",
"Category": "Server Settings",
"Description": "Additional server arguments (not Java arguments) as startup parameters that are not otherwise set by AMP. Use with care. Example: -ip 192.168.1.10",
"Keywords": "custom,server,arguments,parameters",
"FieldName": "CustomServerArgs",
"InputType": "text",
"IsFlagArgument": false,
"ParamFieldName": "CustomServerArgs",
"IncludeInCommandLine": false,
2022-01-11 07:49:01 +01:00
"DefaultValue": " "
2021-12-23 07:57:17 +01:00
}
]