From 5dbd9e965a1906b007d2971a806e80c4da56943a Mon Sep 17 00:00:00 2001 From: XxXAdvisaryXxX Date: Fri, 1 May 2026 20:23:54 -0700 Subject: [PATCH] Adjust key press sleep duration for keyboard input I bumped the sleeps up a bit. It was not sleeping long enough for the previous keystroke to register. Part of a duo of fixes for legacy client log ins. Should also fix bank search typo's and mistypes. --- utils/input/keyboard.simba | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/input/keyboard.simba b/utils/input/keyboard.simba index 77492057..b0793e3d 100644 --- a/utils/input/keyboard.simba +++ b/utils/input/keyboard.simba @@ -156,7 +156,7 @@ begin for i := 1 to Length(text) do begin Target.KeySend(text[i]); - Sleep(Random(Target.Options.KeyPressMin+10, Target.Options.KeyPressMax+25)); + Sleep(Random(Target.Options.KeyPressMin+80, Target.Options.KeyPressMax+80)); end; Self.LastKey := Target.KeyCodeFromChar(text[Length(text)]);