added custom sleep

This commit is contained in:
NYAN CAT 2019-12-01 06:36:38 +03:00
parent 66c56e3820
commit f7f84aa405
2 changed files with 7 additions and 2 deletions

View File

@ -18,7 +18,10 @@ namespace Client
{ {
public static void Main() public static void Main()
{ {
Thread.Sleep(2500); for (int i = 0; i < Convert.ToInt32(Settings.Delay); i++)
{
Thread.Sleep(1000);
}
if (!Settings.InitializeSettings()) Environment.Exit(0); if (!Settings.InitializeSettings()) Environment.Exit(0);
try try

View File

@ -13,7 +13,7 @@ namespace Client
#if DEBUG #if DEBUG
public static string Ports = "6606"; public static string Ports = "6606";
public static string Hosts = "127.0.0.1"; public static string Hosts = "127.0.0.1";
public static string Version = "0.5.4H"; public static string Version = "0.5.5A";
public static string Install = "false"; public static string Install = "false";
public static string InstallFolder = "AppData"; public static string InstallFolder = "AppData";
public static string InstallFile = "Test.exe"; public static string InstallFile = "Test.exe";
@ -27,6 +27,7 @@ namespace Client
public static string Pastebin = "null"; public static string Pastebin = "null";
public static string BDOS = "false"; public static string BDOS = "false";
public static string Hwid = HwidGen.HWID(); public static string Hwid = HwidGen.HWID();
public static string Delay = "0";
#else #else
public static string Ports = "%Ports%"; public static string Ports = "%Ports%";
@ -45,6 +46,7 @@ namespace Client
public static string Pastebin = "%Pastebin%"; public static string Pastebin = "%Pastebin%";
public static string BDOS = "%BDOS%"; public static string BDOS = "%BDOS%";
public static string Hwid = ""; public static string Hwid = "";
public static string Delay = "%Delay%";
#endif #endif