From 9bdc255ae5ccc085d5c97dc746e5005699ec2617 Mon Sep 17 00:00:00 2001 From: Bohica <53943479+Bohicatv@users.noreply.github.com> Date: Thu, 13 Nov 2025 10:31:45 -0800 Subject: [PATCH] adjusts antibot gump --- .../UOContent/Systems/AntiBotSystem/AntiBotGump.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Projects/UOContent/Systems/AntiBotSystem/AntiBotGump.cs b/Projects/UOContent/Systems/AntiBotSystem/AntiBotGump.cs index f7d397c8d..559692a39 100644 --- a/Projects/UOContent/Systems/AntiBotSystem/AntiBotGump.cs +++ b/Projects/UOContent/Systems/AntiBotSystem/AntiBotGump.cs @@ -37,17 +37,17 @@ namespace Server.Engines.AntiBot AddBackground(0, 0, 350, 220, 9270); AddHtml(20, 20, 310, 25, "
Anti-Bot Verification
", false, false); - AddHtml(20, 50, 310, 40, $"
Please enter the following number:
", false, false); + AddHtml(20, 50, 310, 40, "
Please enter the following number:
", false, false); AddHtml(20, 55, 310, 40, $"

{code}
", false, false); - AddHtml(20, 100, 310, 50, $"You have 2 minutes to input the correct number.
Incorrect numbers, cancellations, or timeouts will disconnect you from the server.", false, false); + AddHtml(20, 100, 310, 50, "You have 5 minutes to input the correct number.
Incorrect numbers, cancellations, or timeouts will disconnect you from the server.", false, false); AddBackground(20, 160, 200, 25, 3000); AddTextEntry(25, 165, 190, 20, 0, 0, ""); - + AddButton(230, 160, 4005, 4007, 1, GumpButtonType.Reply, 0); // Submit - AddButton(290, 160, 4017, 4019, 0, GumpButtonType.Reply, 0); // Cancel - AddHtml(230, 190, 40, 20, "
Submit
", false, false); + + AddButton(290, 160, 4017, 4019, 0, GumpButtonType.Reply, 0); // Cancel AddHtml(290, 190, 40, 20, "
Cancel
", false, false); } @@ -67,7 +67,7 @@ namespace Server.Engines.AntiBot var textEntry = info.GetTextEntry(0); if (textEntry != null && !int.TryParse(textEntry.Trim(), out enteredCode)) { - enteredCode = -1; // Invalid input - will cause disconnect + enteredCode = -1; } }