From 83ffed3c86fca906564bd3f42d9c74b39839f1f0 Mon Sep 17 00:00:00 2001 From: manafeng <123635537+mana-feng@users.noreply.github.com> Date: Sun, 8 Jun 2025 03:05:49 +1000 Subject: [PATCH] Add files via upload --- DevourClient/Settings/Settings.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DevourClient/Settings/Settings.cs b/DevourClient/Settings/Settings.cs index a8dd9b4..f06322a 100644 --- a/DevourClient/Settings/Settings.cs +++ b/DevourClient/Settings/Settings.cs @@ -13,12 +13,18 @@ namespace DevourClient.Settings public static Color player_esp_color = new Color(0.00f, 1.00f, 0.00f, 1); public static Color azazel_esp_color = new Color(1.00f, 0.00f, 0.00f, 1); public static float speed = 1f; - public const string message_to_spam = "Deez Nutz"; + // public const string message_to_spam = " "; public static KeyCode flyKey = KeyCode.None; public static Vector2 itemsScrollPosition = Vector2.zero; public static Vector2 rituelObjectsScrollPosition = Vector2.zero; public static Vector2 stuffsScrollPosition = Vector2.zero; + // Error message box settings + public static bool showErrorMessage = false; + public static string errorMessage = ""; + public static float errorMessageDisplayTime = 0f; + public static float errorMessageMaxDisplayTime = 4f; // Maximum display time for error messages (in seconds) + public static KeyCode GetKey() { Thread.Sleep(50); //TOFIX tried using anyKeydown, no success