• Required ActivePerl (Download here if you haven't already) • Procedure Open up Notepad and paste in the following code : Code (Text): #!usr/bin/perl for($x=0;$x<=1000;$x++){print "Content-Type: text/html\n\n"; my $url = "http://www.myspace.com/USERNAME"; use LWP::UserAgent; use HTTP::Request::Common qw(GET POST); my $agent = LWP::UserAgent->new; my $req = GET $url, Referer => "(http://www.google.com/search?hl=en&q=this+should+work&btnG=Google+Search&meta=)"; print $agent->request($req)->as_string;} Credits to : Teliko Where it says "http://www.myspace.com/USERNAME" change that to whatever your username is e.g "http://www.myspace.com/Rider" Now save it as MyspaceClicks.pl And that's it. The script most likely will timeout after like 1000views or so, so you may need to re-open it. It's better to open more than one at a time like 10 or so. Ive gotten around 30k views running it at night for like 12hrs.
Wow, this is kinda cool. If I ever make another myspace I'll be able to make my friends so jealous. "Hey, you've only had your account for 3 days, how'd you get 30,000 views!?!?!" Good work!