Y T Nuke  
Results 1 to 6 of 6
is anyone willing to share a myspace id collector? I mainly need it to gather ...
  1. #1
    captchadreams's Avatar
    captchadreams is offline Regular Member
    Join Date
    Sep 2008
    Age
    27
    Posts
    376
    Reputation
    26
    Thanks
    173
    Thanked 64 Times in 50 Posts

    Default looking for myspace id collector

    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 = emailassword:id

    account1@gmail.comass:33345
    account2@gmail.comass: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.

  2. #2
    InternetUser's Avatar
    InternetUser is offline Power Member
    Join Date
    Jan 2011
    Location
    Earth
    Posts
    745
    Reputation
    26
    Thanks
    243
    Thanked 836 Times in 147 Posts

    Default Re: looking for myspace id collector

    Quote Originally Posted by ezkim0x View Post
    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 = emailassword:id

    account1@gmail.comass:33345
    account2@gmail.comass: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.
    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.

  3. #3
    keith88's Avatar
    keith88 is offline Junior Member
    Join Date
    Sep 2010
    Location
    Home
    Posts
    198
    Reputation
    10
    Thanks
    0
    Thanked 11 Times in 10 Posts

    Default Re: looking for myspace id collector

    Quote Originally Posted by InternetUser View Post
    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.
    Yes I agree

  4. #4
    captchadreams's Avatar
    captchadreams is offline Regular Member
    Join Date
    Sep 2008
    Age
    27
    Posts
    376
    Reputation
    26
    Thanks
    173
    Thanked 64 Times in 50 Posts

    Default Re: looking for myspace id collector

    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/ms...pace-Commenter
    http://www.myadtoolz.com/products/ms...pace-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.

  5. #5
    altschule's Avatar
    altschule is offline Regular Member
    Join Date
    Sep 2010
    Location
    Sector 9
    Posts
    287
    Reputation
    29
    Thanks
    46
    Thanked 170 Times in 54 Posts

    Default Re: looking for myspace id collector

    Quote Originally Posted by ezkim0x View Post
    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 = emailassword:id

    account1@gmail.comass:33345
    account2@gmail.comass: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);
    }
    ?>
    I do cheap Web Design / PHP & Mysql Development.

  6. #6
    captchadreams's Avatar
    captchadreams is offline Regular Member
    Join Date
    Sep 2008
    Age
    27
    Posts
    376
    Reputation
    26
    Thanks
    173
    Thanked 64 Times in 50 Posts

    Default Re: looking for myspace id collector

    Quote Originally Posted by altschule View Post
    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);
    }
    ?>
    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 =

    myspaceemail@hotmail.comassypass
    blahblah2@hotmail.comassword
    yakyak@hotmail.comassword2
    etcetcetc@hotmail.comassword


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

    myspaceemail@hotmail.com_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.

Natural Slow Link Building


SEO Blasts - High quality link building service

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76