PICHU.
using System;using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
namespace Adfly_Bot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
WebProxy wp = new WebProxy();
Random rnd = new Random();
string casemanager = "Null";
string currentproxyaddress, port;
int randomselection;
private void button1_Click(object sender, EventArgs e)
{
HTTPHandling();
}
public void HTTPHandling()
{
switch (casemanager)
{
case "Null":
HttpWebRequest myrequest = (HttpWebRequest)WebRequest.Create(textBox1.Text);
try
{
manageproxy();
wp.Credentials = new NetworkCredential(currentproxyaddress, port);
myrequest.GetResponse();
progressBar1.Maximum = rnd.Next(7, 12);
timer1.Start();
}
catch
{
MessageBox.Show("Error With Next Initial Request or Proxy");
} break;
case "Access":
{
try
{
manageproxy();
HttpWebRequest clicknext = (HttpWebRequest)WebRequest.Create(textBox2.Text);
clicknext.GetResponse();
timer1.Start();
}
catch{
MessageBox.Show("Error With Next Request");
}
}break;
}
}
public void manageproxy()
{
randomselection = rnd.Next(0, 4);
switch (randomselection)
{
case 0: currentproxyaddress = "75.191.164.152"; port = "1818"; break;
case 1: currentproxyaddress = "173.45.112.54"; port = "1024"; break;
case 2: currentproxyaddress = "98.238.57.34"; port = "1281"; break;
case 3: currentproxyaddress = "173.45.120.53"; port = "1080"; break;
}
}
private void timer1_Tick(object sender, EventArgs e)
{
label3.Text = "Current IP Used: " + currentproxyaddress + ":" + port;
casemanager = "Access";
progressBar1.Increment(1);
if (progressBar1.Value == progressBar1.Maximum)
{
progressBar1.Maximum = rnd.Next(7, 12);
try
{
progressBar1.Value = 0;
timer1.Stop();
HTTPHandling();
}
catch
{
timer1.Stop();
MessageBox.Show("Error at timer");
}
}
}
}
}
PICHU.
PICHU.
PICHU.
Copyright © 2026, NextGenUpdate.
All Rights Reserved.