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

Эксперт
Статус
Оффлайн
Регистрация
20 Май 2020
Сообщения
1,382
Реакции[?]
447
Поинты[?]
3K
C#:
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#:
 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
            {
лоадер не загружает ни чит ни хвиды. почему?​
 
Участник
Статус
Оффлайн
Регистрация
2 Фев 2020
Сообщения
818
Реакции[?]
378
Поинты[?]
0
mainpath - должен содержать путь куда длл скачивается и не нужно пытаться сделать пасту с лоадер на c#
 
Сверху Снизу