I've just created a small PHP script that will make random links to 'add friend' pages (Due to reasons my Paypal account is temporarily 'limited', so I can't buy the full version of AdderRobot, that's why I just thought of this).
This code just takes a random number between 10mill and 70mill:
PHP Code:
<?php
for ($i = 1; $i <= 20; $i++)
{
echo '<a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID='.rand(10000000, 70000000).'">link'.$i.'</a><br />';
}
?>
What does this do?
This makes a list of 20 links (change the number if you want more/less links).
How does it work?
The best way is to open a new browser window with tabbed browsing (Firefox, Opera), make sure the tabs open in the background. And click all links once.
Wait till they are loaded and click the 'Add to friends' button on every page.
When you are done simple close all tabs besides the one with the links on it, refresh the page and start over. This only takes a few minutes per 20 friend requests.
I just tested it with 20 links and only got 1 dead link.
|