Whats A Program To Get Me To 301 Views FAST?

UserNameZero

Junior Member
Joined
Mar 21, 2011
Messages
166
Reaction score
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.
 
Seems like a silly thing to want to do...

You can purchase services here to get you far beyond that. Or you can use things like vagex, u2bviews and so on for free.
 
You don't understand why. I know what I need trust me. But do you know of anything that can help me?
 
Yeah he just said try vagex, that will work if you have an account. I use them here and there for videos that I want to push views to.
 
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?
 
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?

Nobody is going to give you a working YT bot or script. So you might as well use something like vagex. Yeah it won't give you the views in under a minute but it will in a fairly quick manner of time.
 
I'm not asking for a working bot or script. I'm not asking for a bot that does ip switching or anything like that. All I pretty much want is a bot that uses threads and can get me to 301 views thats it. When I mentions spks old bot I meant when it was broken it couldn't get you passed 300 views. So i'm asking if the broken version can still get me to 300 but not past it. (All I want is 300 views in under a minute with some sort of auto refreshing program)
 
here's a really basic batch script which can increase the counter

Code:
@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"

not a windows person so it's up to you to make it work how you want

you can get gawk / grep / sed from - http://unxutils.sourceforge.net/
curl from - http://curl.haxx.se/download.html

put those 4 programs in a dir (folder), save the script as something.bat, then you can run from cmd prompt like; something.bat videoid

glhf :)
 
auto refresher on firefox open 10 tabs refresh every second.10 views per second 30 seconds to get that 300 views
 
i use addmefast or youlikehits to bypass 301 views count
 
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!

Try this bro, wrote this a few months ago
 
Back
Top