looking for myspace id collector

captchadreams

Power Member
Joined
Sep 19, 2008
Messages
509
Reaction score
133
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:password:id

[email protected]:pass:33345
[email protected]:pass: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.

[email protected]
[email protected]
etc

this would make my life so much easier.
 
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:password:id

[email protected]:pass:33345
[email protected]:pass: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.

[email protected]
[email protected]
etc

this would make my life so much easier.

I use friendblasterpro too; I know it can be slow but I haven't found any alternatives. It would prolly be easier to find something if myspace didn't lose so much popularity.
 
I found something actually.. unfortunately you have to buy them all seperately though.. but the message and comment bot gathers current friend ids from all accounts you put in.. and then comments or messages them.. uses sockets and can login and post on mult accounts at once.

http://www.myadtoolz.com/products/mspcmntr/Myspace-Commenter
http://www.myadtoolz.com/products/mspmsgr/Myspace-Messenger

theres an id collector too.. but it didn't collect ids from your accounts.. just got accounts using advanced search.. but it's very fast. I used it during the trial period of 2 days.. but probably not buying it. it's around 160$ for all 3 of those bots.
 
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:password:id

[email protected]:pass:33345
[email protected]:pass: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.

[email protected]
[email protected]
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 (.txt) and write "pass:id" to it.

[PHP]
<?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);
}
?>
[/PHP]
 
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 (.txt) and write "pass:id" to it.

[PHP]
<?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);
}
?>
[/PHP][/QUOTE]

pass:id ? .. why would I have their password

i was asking for a bot where I could load in a bunch of myspace accounts at once like

accounts.txt =

[email][email protected]
:passypass
[email protected]:password
[email protected]:password2
[email protected]:password


and it generates new txt files with all the current friend ids of each account in a txt file

[email protected]_passypass.txt =

48958
498585
9539583895
93593583
84646
3498455
4954954

------------------------------

anyways i don't need this anymore.. I'm just really confused on what you were thinking I needed.
 
Back
Top