
Originally Posted by
ezkim0x
is anyone willing to share a myspace id collector?
I mainly need it to gather my current friend ids.. I know friendblasterpro has that option but it's sooooooo slow. that's what i've been using and am currently using. but if anybody would like to share one that could do it faster it would be much appreciated.
also if anybody knows of a program or could create a program that would gather current friend ids from an accounts.txt file I would pay for it.
for instance:
accounts.txt = email

assword:id
account1@gmail.com
ass:33345
account2@gmail.com
ass:454554
you load accounts.txt into the bot and it gathers all the current friend ids for each account and saves them to a new text file.
account1@gmail.com.txt
account2@gmail.com.txt
etc
this would make my life so much easier.
Might be a little late on this, but if you have a web server you can use this little script I whipped up for you. It will take each line and create a new file ([email].txt) and write "pass:id" to it.
PHP Code:
<?php
$account_file = "accounts.txt";
$aHandle = file($account_file);
foreach($aHandle as $line) {
list($email, $pass, $id) = explode(":", $line);
$filename = $email.'.txt';
$fh = fopen($filename, "w");
fwrite($fp, $pass.':'.$id);
fclose($fh);
}
?>
Bookmarks