Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;
You will need: Visual Studios.
1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++) {
var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
request.Method = "GET";
request.UserAgent = "";
request.Timeout = 10000;
request.ServicePoint.ConnectionLimit = 100;
try
{
var responce = request.GetResponse(); //Recieving streamdata
var streamdata = responce.GetResponseStream();
if (streamdata != null) streamdata.Close(); //Closing stream
responce.Close();
}
catch
{
MessageBox.Show("You dun goofed");
break;
}
}
4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!
Have fun!