From 82566b9a77285d4f6bd86833475a552e084a8e49 Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Sun, 24 Aug 2025 23:52:37 -0400 Subject: [PATCH] Update serverGuide.cs --- serverGuide.cs | 39 ++++++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 17 deletions(-) diff --git a/serverGuide.cs b/serverGuide.cs index 2695ef7..56009e0 100644 --- a/serverGuide.cs +++ b/serverGuide.cs @@ -215,31 +215,36 @@ Tacoserver: [Tacoserver Github](https://github.com/ChocoTaco1/TacoServer) --- ### Post Preview Patch -Updating a server to the newly released preview: -https://tribesnext.com/forum/discussion/4430/preview-qol-fixes-update + - Updating a server to the newly released preview: -Back up your server T2 folder -Download the latest release -Use wine `TribesNEXT_XXXXXXXXX_preview.exe` to initiate the installer for wine, windows just execute the exe -Install to your server T2 GameData folder -If you're using Loops fix or anything like that, remove it from the launch parameters + https://tribesnext.com/forum/discussion/4430/preview-qol-fixes-update -To take advantage of extra bandwidth set, - $pref::Net::PacketRateToClient = 64; - $pref::Net::PacketSize = 1000; + Back up your server T2 folder + Download the latest release + Use wine `TribesNEXT_XXXXXXXXX_preview.exe` to initiate the installer for wine, windows just execute the exe + Install to your server T2 GameData folder + If you're using Loops fix or anything like that, remove it from the launch parameters + + - To take advantage of extra bandwidth set, + + $pref::Net::PacketRateToClient = 64; + $pref::Net::PacketSize = 1000; -To prevent the new UE box from popping up set, - $pref::Engine::ExitOnException = true; + - To prevent the new UE box from popping up set, + + $pref::Engine::ExitOnException = true; -If you don't want the linux icon showing up use - $Host::Linux = 0; + - If you don't want the linux icon showing up use + + $Host::Linux = 0; -Loadingscreen Safeguards: -To ensure clients dont get stuck on the loading screen these changes need to be made -https://github.com/ChocoTaco1/TacoServer/commit/7cd1cb8815e19990ab5a0cf632aedc82726333ed + - Loadingscreen Safeguards: + + To ensure clients dont get stuck on the loading screen these changes need to be made + https://github.com/ChocoTaco1/TacoServer/commit/7cd1cb8815e19990ab5a0cf632aedc82726333ed ---