thebestyoutuber
Registered Member
- Sep 9, 2013
- 66
- 6
So i saw somebody post a 301 views bot which i need urgently, i tried to do it in Visual Studio, but since i have no coding knowledge i got a lot of errors.
So if someone could build this for me, it would be great!
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;
heres the code;
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!
So if someone could build this for me, it would be great!
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;
heres the code;
Code:
[COLOR=#FFFFCC]for (var i = 0; i < 500; i++) {[/COLOR] 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;
} [COLOR=#FFFFCC] }[/COLOR]
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!