Подведи собственные итоги года совместно с YOUGAME и забери ценные призы! Перейти

Вопрос Не загружает с хоста.

Эксперт
Эксперт
Статус
Оффлайн
Регистрация
20 Май 2020
Сообщения
1,518
Реакции
462
C#:
Expand Collapse Copy
private void timer1_Tick(object sender, EventArgs e)
        {
            WebClient wb = new WebClient();
            string mainpath = "dll name"; //You can change the path to wherever you want but just remember to use "\\" instead of just one "\"
            wb.DownloadFile("dll name", mainpath); //Replace "DLL URL" with the URL to directly download your DLL [Example: http://myurl.com/MYDLL.dll]
            var name = "csgo"; //Replace "csgo" with any exe you want [Example: For Team Fortress 2 you would replace it with "hl2"]
            var target = Process.GetProcessesByName(name).FirstOrDefault();
            var path = mainpath;
            var file = File.ReadAllBytes(path);
C#:
Expand Collapse Copy
 private void button2_Click(object sender, EventArgs e)
        {
            checkonline();
            WebClient wb = new WebClient();
            string HWIDLIST = wb.DownloadString("http://yoursite/hwid.txt"); //Replace "HWID List URL" with your own URL to a RAW text (txt) file with all your wanted HWIDs [Example: http://myurl.com/HWID.txt]
            var name = "csgo"; //Replace "csgo" with any exe you want [Example: For Team Fortress 2 you would replace it with "hl2"]
            var target = Process.GetProcessesByName(name).FirstOrDefault();
            if (HWIDLIST.Contains(textBox1.Text)) //You can add a "!" before the "HWIDLIST" and after the "if (" to make it into a blacklist HWID system instead of a whitelist HWID system
            {
лоадер не загружает ни чит ни хвиды. почему?​
 
Назад
Сверху Снизу