From 12e6269e49603ff789e4c42f8d7fda4605f93e84 Mon Sep 17 00:00:00 2001 From: Egezenn Date: Fri, 19 Jun 2026 16:24:34 +0300 Subject: [PATCH] Change leftover window titles & text --- Application/OasisBot/Views/SplashScreen.Designer.cs | 4 ++-- Application/OasisBot/Views/SplashScreen.cs | 1 - Library/RSBot.Core/Components/ClientManager.cs | 2 +- .../Handler/Agent/Character/CharacterDataEndResponse.cs | 2 +- Library/RSBot.Loader.Library/Library.cpp | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Application/OasisBot/Views/SplashScreen.Designer.cs b/Application/OasisBot/Views/SplashScreen.Designer.cs index 56be6507..fbba6939 100644 --- a/Application/OasisBot/Views/SplashScreen.Designer.cs +++ b/Application/OasisBot/Views/SplashScreen.Designer.cs @@ -76,7 +76,7 @@ private void InitializeComponent() logoLabel.Name = "logoLabel"; logoLabel.Size = new System.Drawing.Size(640, 100); logoLabel.TabIndex = 3; - logoLabel.Text = "RSBOT"; + logoLabel.Text = "OASISBOT"; logoLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // labelVersion @@ -234,4 +234,4 @@ private void InitializeComponent() private SDUI.Controls.Label lblLoading; private SDUI.Controls.ProgressBar progressLoading; } -} \ No newline at end of file +} diff --git a/Application/OasisBot/Views/SplashScreen.cs b/Application/OasisBot/Views/SplashScreen.cs index ddd8e8d2..f5a426aa 100644 --- a/Application/OasisBot/Views/SplashScreen.cs +++ b/Application/OasisBot/Views/SplashScreen.cs @@ -29,7 +29,6 @@ public SplashScreen(Main mainForm) _mainForm = mainForm; - logoLabel.Text = "OASISBOT"; labelVersion.Text = Program.AssemblyVersion; referenceDataLoader.RunWorkerCompleted += ReferenceDataLoaderCompleted; } diff --git a/Library/RSBot.Core/Components/ClientManager.cs b/Library/RSBot.Core/Components/ClientManager.cs index d3692061..b859ffc1 100644 --- a/Library/RSBot.Core/Components/ClientManager.cs +++ b/Library/RSBot.Core/Components/ClientManager.cs @@ -615,7 +615,7 @@ private static void ClientProcess_Exited(object sender, EventArgs e) /// private static void PrepareTempConfigFile(uint processId, int divisionIndex) { - var tmpConfigFile = $"RSBot_{processId}.tmp"; + var tmpConfigFile = $"OasisBot_{processId}.tmp"; var division = Game.ReferenceManager.DivisionInfo.Divisions[divisionIndex]; var gatewayPort = Game.ReferenceManager.GatewayInfo.Port; diff --git a/Library/RSBot.Core/Network/Handler/Agent/Character/CharacterDataEndResponse.cs b/Library/RSBot.Core/Network/Handler/Agent/Character/CharacterDataEndResponse.cs index 1b70a4c4..ac6054d7 100644 --- a/Library/RSBot.Core/Network/Handler/Agent/Character/CharacterDataEndResponse.cs +++ b/Library/RSBot.Core/Network/Handler/Agent/Character/CharacterDataEndResponse.cs @@ -204,7 +204,7 @@ public void Invoke(Packet packet) EventManager.FireEvent("OnLoadCharacter"); - ClientManager.SetTitle($"{character.Name} - RSBot"); + ClientManager.SetTitle($"{character.Name} - OasisBot"); if (!Game.Clientless) return; diff --git a/Library/RSBot.Loader.Library/Library.cpp b/Library/RSBot.Loader.Library/Library.cpp index d7788d79..5060261d 100644 --- a/Library/RSBot.Loader.Library/Library.cpp +++ b/Library/RSBot.Loader.Library/Library.cpp @@ -203,7 +203,7 @@ void LoadConfig() if (!tempFolder) return; stringstream payloadPath; - payloadPath << tempFolder << "\\RSBot_" << GetCurrentProcessId() << ".tmp"; + payloadPath << tempFolder << "\\OasisBot_" << GetCurrentProcessId() << ".tmp"; for (int i = 0; i < 30; i++) { ifstream stream(payloadPath.str(), ifstream::binary);