From 50424195fc4f9decbfd3e64aff132f3a0e56e1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=BCm?= <72763011+EkiciLP@users.noreply.github.com> Date: Thu, 16 Dec 2021 17:41:46 +0100 Subject: [PATCH] Added more config fields - Added Public IP field so you dont need to change your IP Binding - Added Owner Name and Owner GUID field so you can set yourself as an owner --- astroneerconfig.json | 40 +++++++++++++++++++++++++++++++++++++++- astroneermetaconfig.json | 6 ++++-- 2 files changed, 43 insertions(+), 3 deletions(-) diff --git a/astroneerconfig.json b/astroneerconfig.json index 4542264..b01574b 100644 --- a/astroneerconfig.json +++ b/astroneerconfig.json @@ -65,6 +65,44 @@ "IncludeInCommandLine": false, "DefaultValue": "8", "EnumValues": {} + }, + { + "DisplayName": "Public IP", + "Category": "Server Settings", + "Description": "Input your public server IP in here otherwise the server won't work.", + "Keywords": "Public IP", + "FieldName": "publicip", + "InputType": "text", + "IsFlagArgument": false, + "ParamFieldName": "publicip", + "IncludeInCommandLine": false, + "DefaultValue": "INSERT YOUR PUBLIC IP HERE", + "EnumValues": {} + }, + { + "DisplayName": "Owner Name", + "Category": "Server Settings", + "Description": "Input your Account name.", + "Keywords": "Owner Name", + "FieldName": "ownername", + "InputType": "text", + "IsFlagArgument": false, + "ParamFieldName": "ownername", + "IncludeInCommandLine": false, + "DefaultValue": "", + "EnumValues": {} + }, + { + "DisplayName": "Owner GUID", + "Category": "Server Settings", + "Description": "Enter your GUID", + "Keywords": "Owner GUID", + "FieldName": "ownerguid", + "InputType": "text", + "IsFlagArgument": false, + "ParamFieldName": "ownerguid", + "IncludeInCommandLine": false, + "DefaultValue": "", + "EnumValues": {} } - ] \ No newline at end of file diff --git a/astroneermetaconfig.json b/astroneermetaconfig.json index e9f01bf..4e789d4 100644 --- a/astroneermetaconfig.json +++ b/astroneermetaconfig.json @@ -7,11 +7,13 @@ { "Heading": "/Script/Astro.AstroServerSettings", "SettingMappings": { - "PublicIP": "$ApplicationIPBinding", + "PublicIP": "publicip", "ServerName": "servername", "ServerPassword": "serverpassword", "AutoSaveGameInterval": "autosaveinterval", - "MaxServerFramerate": "maxfps" + "MaxServerFramerate": "maxfps", + "OwnerName": "ownername", + "OwnerGuid": "ownerguid" } }