UserNameZero
Junior Member
- Mar 21, 2011
- 166
- 1
I want my videos to get to 301 views fast, using autorefresh takes me like 10 minutes is there any old view bots that can still atleast get me to 301 views in under a minute.
Vagex doesn't really give you 300 views in under a minute. Thanks for the suggestion though. Like what about spks old bots that was meant for mobile views can It still get us to 300 views?
@echo off
curl -s "http://www.youtube.com/get_video_info?html5=1&video_id=%1&el=detailpage&eurl=&gl=US&hl=en" | sed "s/\&/\n/g" | grep "^token" | gawk -F= "{print $2}" | sed "s/%%3D$/=/g" > token.%1
set /p token=<token.%1
curl -s "http://www.youtube.com/get_video?ptk=youtube_none&asv=3&t=%token%&fmt=34&noflv=1&video_id=%1&el=detailpage"
Bro how would you do that?use charles proxy to get 301 view in less than 30 sec
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!