From 3b5c9e6c5bb74288867be6e14b2edafb2799356c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 12 Jul 2023 13:02:00 +0100 Subject: [PATCH] feat(ti): update game configuration - Updated `ti/Engine.ini` to include additional content paths. - Refactored `ti/Game.ini` to modify server settings: - Increased maximum player count to 100. - Enabled human players. - Disabled server password requirement. - Set queue port to 9998. - Enabled RCON with password "ADMINPASSWORD" on port 9999. - Allowed replay recording. --- ti/Engine.ini | 41 +++++++++++++++++++++++++++++++++++++++++ ti/Game.ini | 38 +++++++++++++++----------------------- 2 files changed, 56 insertions(+), 23 deletions(-) create mode 100644 ti/Engine.ini diff --git a/ti/Engine.ini b/ti/Engine.ini new file mode 100644 index 0000000..42362b9 --- /dev/null +++ b/ti/Engine.ini @@ -0,0 +1,41 @@ +[Core.System] +Paths=../../../Engine/Content +Paths=%GAMEDIR%Content +Paths=../../../Engine/Plugins/Runtime/SoundUtilities/Content +Paths=../../../Engine/Plugins/Runtime/Synthesis/Content +Paths=../../../Engine/Plugins/Runtime/AudioSynesthesia/Content +Paths=../../../Engine/Plugins/Runtime/WebBrowserWidget/Content +Paths=../../../Engine/Plugins/FX/Niagara/Content +Paths=../../../Engine/Plugins/Experimental/PythonScriptPlugin/Content +Paths=../../../TheIsle/Plugins/RVTObjectLandscapeBlending/Content +Paths=../../../TheIsle/Plugins/DLSS/Content +Paths=../../../TheIsle/Plugins/UIPF/Content +Paths=../../../Engine/Plugins/Experimental/ControlRig/Content +Paths=../../../TheIsle/Plugins/SkinnedDecalComponent/Content +Paths=../../../TheIsle/Plugins/DLSSMoviePipelineSupport/Content +Paths=../../../Engine/Plugins/MovieScene/MovieRenderPipeline/Content +Paths=../../../Engine/Plugins/Compositing/OpenColorIO/Content +Paths=../../../Engine/Plugins/MovieScene/SequencerScripting/Content +Paths=../../../TheIsle/Plugins/EOSOnlineSubsystem/Content +Paths=../../../TheIsle/Plugins/ImpostorBaker/Content +Paths=../../../Engine/Plugins/2D/Paper2D/Content +Paths=../../../Engine/Plugins/Developer/AnimationSharing/Content +Paths=../../../Engine/Plugins/Editor/GeometryMode/Content +Paths=../../../Engine/Plugins/Editor/SpeedTreeImporter/Content +Paths=../../../Engine/Plugins/Enterprise/DatasmithContent/Content +Paths=../../../Engine/Plugins/Experimental/ChaosClothEditor/Content +Paths=../../../Engine/Plugins/Experimental/GeometryProcessing/Content +Paths=../../../Engine/Plugins/Experimental/GeometryCollectionPlugin/Content +Paths=../../../Engine/Plugins/Experimental/ChaosSolverPlugin/Content +Paths=../../../Engine/Plugins/Experimental/ChaosNiagara/Content +Paths=../../../Engine/Plugins/Experimental/MotoSynth/Content +Paths=../../../Engine/Plugins/MagicLeap/MagicLeapPassableWorld/Content +Paths=../../../Engine/Plugins/Media/MediaCompositing/Content +Paths=../../../Engine/Plugins/Runtime/OpenXREyeTracker/Content +Paths=../../../Engine/Plugins/Runtime/OpenXR/Content +Paths=../../../Engine/Plugins/Runtime/OpenXRHandTracking/Content +Paths=../../../Engine/Plugins/VirtualProduction/Takes/Content + +[EpicOnlineServices] +DedicatedServerClientId=xyza7891gk5PRo3J7G9puCJGFJjmEguW +DedicatedServerClientSecret=pKWl6t5i9NJK8gTpVlAxzENZ65P8hYzodV8Dqe5Rlc8 \ No newline at end of file diff --git a/ti/Game.ini b/ti/Game.ini index 84b4c74..a47653c 100644 --- a/ti/Game.ini +++ b/ti/Game.ini @@ -1,26 +1,18 @@ +[/script/theisle.tigamestatebase] +AdminsSteamIDs=ADMINID +AdminsSteamIDs=ADMINID +AdminsSteamIDs=ADMINID + [/Script/TheIsle.TIGameSession] -ServerName=SERVERNAME -MaxPlayerCount=50 -bServerGlobalChat=true -bServerNesting=false -bServerFallDamage=true -bServerAllowReplayRecording=false -bServerDynamicTimeOfDay=true -ServerTimeOfDayInSeconds=21600 -ServerLengthOfDayInSeconds=3600 +bAllowReplay=true +bEnableHumans=false +bQueueEnabled=true +bRconEnabled=true bServerDynamicWeather=true -QueueEnabled=true -QueuePort=10000 - -[/Script/Engine.GameSession] -MaxPlayers=50 - -[/Script/Engine.Game] -RconEnabled=true +bServerPassword=false +MaxPlayerCount=100 +QueuePort=9998 RconPassword=ADMINPASSWORD -RconPort=8888 - -[/Script/TheIsle.TIGameStateBase] -;AdminsSteamIDs=77777777777777777 -;AdminsSteamIDs=77777777777777777 - +RconPort=9999 +ServerName=SERVERNAME +ServerPassword=MyPassword \ No newline at end of file