added custom sleep
This commit is contained in:
parent
66c56e3820
commit
f7f84aa405
@ -18,7 +18,10 @@ namespace Client
|
||||
{
|
||||
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);
|
||||
|
||||
try
|
||||
|
@ -13,7 +13,7 @@ namespace Client
|
||||
#if DEBUG
|
||||
public static string Ports = "6606";
|
||||
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 InstallFolder = "AppData";
|
||||
public static string InstallFile = "Test.exe";
|
||||
@ -27,6 +27,7 @@ namespace Client
|
||||
public static string Pastebin = "null";
|
||||
public static string BDOS = "false";
|
||||
public static string Hwid = HwidGen.HWID();
|
||||
public static string Delay = "0";
|
||||
|
||||
#else
|
||||
public static string Ports = "%Ports%";
|
||||
@ -45,6 +46,7 @@ namespace Client
|
||||
public static string Pastebin = "%Pastebin%";
|
||||
public static string BDOS = "%BDOS%";
|
||||
public static string Hwid = "";
|
||||
public static string Delay = "%Delay%";
|
||||
#endif
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user