From 47f83ab12dcf040d8bb0a9fde2c5d27f946adb83 Mon Sep 17 00:00:00 2001 From: James Manker Date: Sun, 13 Feb 2022 14:23:18 -0600 Subject: [PATCH] Updated some things Based on Greelan's review, I've updated the following: 1. Removed unnecessary ports 2. Clarified Max Heap needs "m" at the end 3. Added "" around startup args that were manually inserted --- wurm-unlimited.kvp | 12 ++++++++++++ wurm-unlimitedconfig.json | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/wurm-unlimited.kvp b/wurm-unlimited.kvp index c2f39a4..ecbb1eb 100644 --- a/wurm-unlimited.kvp +++ b/wurm-unlimited.kvp @@ -1,9 +1,17 @@ App.AdminMethod=STDIO App.ApplicationPort1=8766 App.ApplicationPort2=27016 +<<<<<<< Updated upstream App.ApplicationReadyMode=RegexMatch App.BaseDirectory=./wurm-unlimited/402370/ App.CommandLineArgs=ip={{$ApplicationIPBinding}} externalport={{$ApplicationPort1}} queryport={{$ApplicationPort2}} {{$FormattedArgs}} +======= +App.ApplicationPort3=0 +App.RemoteAdminPort=0 +App.ApplicationReadyMode=RegexMatch +App.BaseDirectory=./wurm-unlimited/402370/ +App.CommandLineArgs=ip="{{$ApplicationIPBinding}}" externalport="{{$ApplicationPort1}}" queryport="{{$ApplicationPort2}}" {{$FormattedArgs}} +>>>>>>> Stashed changes App.LinuxCommandLineArgs= App.WindowsCommandLineArgs= App.CommandLineParameterDelimiter= @@ -19,7 +27,11 @@ App.HasWritableConsole=false App.RapidStartup=false App.RootDir=./wurm-unlimited/ App.UpdateSource=Multi +<<<<<<< Updated upstream App.UpdateSources=[{"UpdateStageName":"SteamCMD Download","UpdateSourcePlatform":31,"UpdateSource":4,"UpdateSourceData":"402370","UpdateSourceArgs":null,"UpdateSourceVersion":null,"UpdateSourceTarget":null,"UnzipUpdateSource":false,"OverwriteExistingFiles":false,"ForceDownloadPlatform":0,"UpdateSourceConditionSetting":null,"UpdateSourceConditionValue":null}] +======= +App.UpdateSources=[{"UpdateStageName":"SteamCMD Download","UpdateSourcePlatform":31,"UpdateSource":4,"UpdateSourceData":"402370","UpdateSourceArgs":null,"UpdateSourceVersion":null,"UpdateSourceTarget":null,"UnzipUpdateSource":false,"OverwriteExistingFiles":false,"ForceDownloadPlatform":0,"UpdateSourceConditionSetting":null,"UpdateSourceConditionValue":null},{"UpdateStageName":"Start Server","UpdateSourcePlatform":"All","UpdateSource":"StartApplication"},{"UpdateStageName":"Wait For Server Start","UpdateSourcePlatform":"All","UpdateSource":"WaitForStartupComplete"},{"UpdateStageName":"Stop Server","UpdateSourcePlatform":"All","UpdateSource":"ShutdownApplication"}] +>>>>>>> Stashed changes App.WorkingDir=402370 App.MaxUsers=100 Console.ThrowawayMessageRegex=^(WARNING|ERROR): Shader.+$ diff --git a/wurm-unlimitedconfig.json b/wurm-unlimitedconfig.json index 1002e81..87708e7 100644 --- a/wurm-unlimitedconfig.json +++ b/wurm-unlimitedconfig.json @@ -175,7 +175,11 @@ { "DisplayName": "Memory Limit", "Category": "Server Settings", +<<<<<<< Updated upstream "Description": "Java's maximum heap size", +======= + "Description": "Java's maximum heap size (Must include ####m at the end)", +>>>>>>> Stashed changes "Keywords": "maximum,memory,limit", "FieldName": "MaxHeapSize", "InputType": "text", @@ -195,5 +199,36 @@ "ParamFieldName": "VMParams.JvmParam0", "IncludeInCommandLine": false, "DefaultValue": "-XX:+AggressiveOpts", +<<<<<<< Updated upstream +======= + }, + { + "DisplayName": "Override Java Location", + "Category": "Server Settings", + "Description": "If you receive \"Failed to load jvm.dll\", you may specify a custom location where the jvm.dll is located. Only change this if you know what you're doing!", + "Keywords": "custom,java,arguments,args,location", + "FieldName": "OverrideJavaRegEntry", + "InputType": "text", + "IsFlagArgument": false, + "ParamFieldName": "Runtime.OverrideJavaRegEntry", + "IncludeInCommandLine": false, + "DefaultValue": "false", + "EnumValues": { + "True": "true", + "False": "false" + } + }, + { + "DisplayName": "Custom Java Location", + "Category": "Server Settings", + "Description": "If you receive \"Failed to load jvm.dll\", you may specify a custom location where the jvm.dll is located. Only change this if you know what you're doing!", + "Keywords": "custom,java,arguments,args,location", + "FieldName": "JavaPath", + "InputType": "text", + "IsFlagArgument": false, + "ParamFieldName": "Runtime.JavaPath", + "IncludeInCommandLine": false, + "DefaultValue": "C:\\Program Files\\Java\\jre1.8.0_321\\bin\\server", +>>>>>>> Stashed changes } ] \ No newline at end of file