From 2121cb1887915877b6e5913668ea80795f399646 Mon Sep 17 00:00:00 2001 From: Julian Thelen AKA DARKACE <32885015+darkace1998@users.noreply.github.com> Date: Tue, 2 May 2023 21:44:23 +0200 Subject: [PATCH] Create Project-5-Sightseerconfig.json --- Project-5-Sightseerconfig.json | 60 ++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 Project-5-Sightseerconfig.json diff --git a/Project-5-Sightseerconfig.json b/Project-5-Sightseerconfig.json new file mode 100644 index 0000000..7647771 --- /dev/null +++ b/Project-5-Sightseerconfig.json @@ -0,0 +1,60 @@ +[ + { + "DisplayName":"Server Name", + "Category":"Windward Server Settings", + "Description":"Server name as shown in the in-game browser", + "Keywords":"server,name", + "FieldName":"name", + "InputType":"text", + "IsFlagArgument":false, + "ParamFieldName":"name", + "IncludeInCommandLine":true, + "SkipIfEmpty":true, + "DefaultValue":"AMP Powered Windward Server", + "EnumValues":{} + }, + { + "DisplayName":"Make Server Public", + "Category":"Windward Server Settings", + "Description":"If enabled, the server will be registered to the public lobby and be publicly visible in the in-game browser", + "Keywords":"public", + "FieldName":"public", + "InputType":"checkbox", + "IsFlagArgument":false, + "ParamFieldName":"public", + "IncludeInCommandLine":false, + "DefaultValue":"-public", + "EnumValues":{ + "False":"", + "True":"-public" + } + }, + { + "DisplayName":"World Name", + "Category":"Windward Server Settings", + "Description":"Sets the name of the world to load (if it already exists) or to create. If the world does not already exist in the Worlds directory, an admin must create it in-game after connecting to the server", + "Keywords":"world,name", + "FieldName":"world", + "InputType":"text", + "IsFlagArgument":false, + "ParamFieldName":"world", + "IncludeInCommandLine":true, + "SkipIfEmpty":true, + "DefaultValue":"World", + "EnumValues":{} + }, + { + "DisplayName":"Server Admins", + "Category":"Windward Server Settings", + "Description":"List of Steam64 IDs for server admins. [Find Steam64 IDs](https://steamidfinder.com/)", + "Keywords":"admins", + "FieldName":"admins", + "InputType":"list", + "IsFlagArgument":false, + "ParamFieldName":"admins", + "IncludeInCommandLine":false, + "DefaultValue":"", + "Special":"listfile:./windward/server/ServerConfig/admin.txt", + "EnumValues": {} + } +]