
 276
 276 0
 0 1969-12-31
 1969-12-31 nopathz
            bang tu js yg lain na 
            da jln tp sbagian gag jln
            trutama Randomize na 
            jg gag jln......................
 nopathz
            bang tu js yg lain na 
            da jln tp sbagian gag jln
            trutama Randomize na 
            jg gag jln......................

 trus gmn
            pa yg zeta lakuin
            skrang..................
            trus gmn
            pa yg zeta lakuin
            skrang..................


 tankzz ya sbelum
            na.........................
            tankzz ya sbelum
            na.........................
 
				|  | 

 157
 157 0
 0 1969-12-31
 1969-12-31|  | 

 1256
 1256 0
 0 1969-12-31
 1969-12-31

 [/quote]
url FS nya dong ....
please ...
coba tambahin ini lagi di bagian C :
<">dan ubah yang ini :
[quote]fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",[b]TRACKER.base_domain[/b]+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },[/quote]
jagi gini :
[quote]fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",[b]"http://profiles.friendster.com"[/b]+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },[/quote]
[/quote]
url FS nya dong ....
please ...
coba tambahin ini lagi di bagian C :
<">dan ubah yang ini :
[quote]fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",[b]TRACKER.base_domain[/b]+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },[/quote]
jagi gini :
[quote]fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",[b]"http://profiles.friendster.com"[/b]+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },[/quote]
					Last edited by nopathz (2008-06-30 15:38:10)
|  | 

 53
 53 0
 0 1969-12-31
 1969-12-31 oh ya,emang bro pake browser apa?
oh ya,emang bro pake browser apa?
					Last edited by uncle_bob (2008-06-30 15:35:02)
|  | 

 276
 276 0
 0 1969-12-31
 1969-12-31|  | 

 1922
 1922 0
 0 1969-12-31
 1969-12-31 
				|  | 

 157
 157 0
 0 1969-12-31
 1969-12-31|  | 

 1256
 1256 0
 0 1969-12-31
 1969-12-31 [b]fian_zeta[/b]
saya jawab di [url=http://theftalk.com/p1268454-Today-02%3A24%3A36.html#p1268454][b]#40443[/b][/url]
 [b]fian_zeta[/b]
saya jawab di [url=http://theftalk.com/p1268454-Today-02%3A24%3A36.html#p1268454][b]#40443[/b][/url]
					Last edited by nopathz (2008-06-30 15:40:52)
|  | 

 53
 53 0
 0 1969-12-31
 1969-12-31 
				|  | 

 276
 276 0
 0 1969-12-31
 1969-12-31 nopathz
            bang zeta
            gag ngerti yg
            ni...........
fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET","http://profiles.friendster.com"+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
tu gmn naruh
na............
 nopathz
            bang zeta
            gag ngerti yg
            ni...........
fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET","http://profiles.friendster.com"+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
tu gmn naruh
na............
 
				|  | 

 1256
 1256 0
 0 1969-12-31
 1969-12-31
 [/quote]
itu ada di script randomized friend .. coba deh cari ...
trus ganti dengan yang saya kasi ...
ato klo mo gampangnya ... ganti aja ini:
[spoiler]/*RANDOMIZED FRIENDS*/
if (typeof Ffetcher == "undefined") { Ffetcher = {}; }
Ffetcher = {
    friends: new Array(),
    pages: null,
    maxfriends: null,
    container: null,
    cached: new Array(),
    display: 10,
   
    init: function() {
        var num=document.links;
        for(var x=0;x<num.length;x++) {
            if (num[x].href.match(/\/friends\/[\d]+?/)) {
                var t=/\(([\d]+?)\)/;
                this.maxfriends=t.exec(num[x].innerHTML)[1];
   
                break;
            }
        }
        this.pages=Math.floor(this.maxfriends/30);
        var htm="<div id='fcontainer' class='boxcontent'></div>";
addBox("LEFT","Friends",htm,"frbox","18");
        document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>";
        this.container=document.getElementById("fcontainer");
        this.fetch(0);
    },
   
    fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",TRACKER.base_domain+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
   
    show: function() {
        this.container.innerHTML="";
        this.friends.sort(randOrd);
        for(var x=0;x<this.display;x++) {
            this.container.innerHTML+=this.friends[x];
        }
    },
   
    more: function() {
        if(this.cached.length<(this.pages+1)) {
            var temp;
            do {
                temp=Math.ceil(Math.random()*(this.pages));
            }while(this.cached.toString().indexOf(":"+temp+":")!=-1);
            this.fetch(temp);
        }
        else {
            this.show();
        }
    }
};[/spoiler]
dengan ini :
[spoiler]/*RANDOMIZED FRIENDS*/
if (typeof Ffetcher == "undefined") { Ffetcher = {}; }
Ffetcher = {
    friends: new Array(),
    pages: null,
    maxfriends: null,
    container: null,
    cached: new Array(),
    display: 10,
   
    init: function() {
        var num=document.links;
        for(var x=0;x<num.length;x++) {
            if (num[x].href.match(/\/friends\/[\d]+?/)) {
                var t=/\(([\d]+?)\)/;
                this.maxfriends=t.exec(num[x].innerHTML)[1];
   
                break;
            }
        }
        this.pages=Math.floor(this.maxfriends/30);
        var htm="<div id='fcontainer' class='boxcontent'></div>";
addBox("LEFT","Friends",htm,"frbox","18");
        document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>";
        this.container=document.getElementById("fcontainer");
        this.fetch(0);
    },
   
    fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET","http://profiles.friendster.com/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
   
    show: function() {
        this.container.innerHTML="";
        this.friends.sort(randOrd);
        for(var x=0;x<this.display;x++) {
            this.container.innerHTML+=this.friends[x];
        }
    },
   
    more: function() {
        if(this.cached.length<(this.pages+1)) {
            var temp;
            do {
                temp=Math.ceil(Math.random()*(this.pages));
            }while(this.cached.toString().indexOf(":"+temp+":")!=-1);
            this.fetch(temp);
        }
        else {
            this.show();
        }
    }
};[/spoiler]
[/quote]
itu ada di script randomized friend .. coba deh cari ...
trus ganti dengan yang saya kasi ...
ato klo mo gampangnya ... ganti aja ini:
[spoiler]/*RANDOMIZED FRIENDS*/
if (typeof Ffetcher == "undefined") { Ffetcher = {}; }
Ffetcher = {
    friends: new Array(),
    pages: null,
    maxfriends: null,
    container: null,
    cached: new Array(),
    display: 10,
   
    init: function() {
        var num=document.links;
        for(var x=0;x<num.length;x++) {
            if (num[x].href.match(/\/friends\/[\d]+?/)) {
                var t=/\(([\d]+?)\)/;
                this.maxfriends=t.exec(num[x].innerHTML)[1];
   
                break;
            }
        }
        this.pages=Math.floor(this.maxfriends/30);
        var htm="<div id='fcontainer' class='boxcontent'></div>";
addBox("LEFT","Friends",htm,"frbox","18");
        document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>";
        this.container=document.getElementById("fcontainer");
        this.fetch(0);
    },
   
    fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET",TRACKER.base_domain+"/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
   
    show: function() {
        this.container.innerHTML="";
        this.friends.sort(randOrd);
        for(var x=0;x<this.display;x++) {
            this.container.innerHTML+=this.friends[x];
        }
    },
   
    more: function() {
        if(this.cached.length<(this.pages+1)) {
            var temp;
            do {
                temp=Math.ceil(Math.random()*(this.pages));
            }while(this.cached.toString().indexOf(":"+temp+":")!=-1);
            this.fetch(temp);
        }
        else {
            this.show();
        }
    }
};[/spoiler]
dengan ini :
[spoiler]/*RANDOMIZED FRIENDS*/
if (typeof Ffetcher == "undefined") { Ffetcher = {}; }
Ffetcher = {
    friends: new Array(),
    pages: null,
    maxfriends: null,
    container: null,
    cached: new Array(),
    display: 10,
   
    init: function() {
        var num=document.links;
        for(var x=0;x<num.length;x++) {
            if (num[x].href.match(/\/friends\/[\d]+?/)) {
                var t=/\(([\d]+?)\)/;
                this.maxfriends=t.exec(num[x].innerHTML)[1];
   
                break;
            }
        }
        this.pages=Math.floor(this.maxfriends/30);
        var htm="<div id='fcontainer' class='boxcontent'></div>";
addBox("LEFT","Friends",htm,"frbox","18");
        document.getElementById("content_frbox").innerHTML+="<div class='viewall'><a href='javascript: void(Ffetcher.more())'>More Random Friends</a></div>";
        this.container=document.getElementById("fcontainer");
        this.fetch(0);
    },
   
    fetch: function(page) {
        document.getElementById("frbox").childNodes[0].innerHTML="Friends Loading... Pls wait...";
        processAjaxRequest("GET","http://profiles.friendster.com/friends/"+pageOwnerID+"/"+page,true,null, "parseFriends",page);
    },
   
    show: function() {
        this.container.innerHTML="";
        this.friends.sort(randOrd);
        for(var x=0;x<this.display;x++) {
            this.container.innerHTML+=this.friends[x];
        }
    },
   
    more: function() {
        if(this.cached.length<(this.pages+1)) {
            var temp;
            do {
                temp=Math.ceil(Math.random()*(this.pages));
            }while(this.cached.toString().indexOf(":"+temp+":")!=-1);
            this.fetch(temp);
        }
        else {
            this.show();
        }
    }
};[/spoiler]
					Last edited by nopathz (2008-06-30 16:02:46)
|  | 

 276
 276 0
 0 1969-12-31
 1969-12-31 nopathz
         
           tanks bnyak bang
           da jln tu js na smua.........
 nopathz
         
           tanks bnyak bang
           da jln tu js na smua.........




 
				|  | 

 1256
 1256 0
 0 1969-12-31
 1969-12-31
 [/quote]
coba ini [url=http://theftalk.com/p118003-2007-07-08-04%3A44%3A03.html#p118003][b]Efek Salju di Profile[/b][/url]
tapi saya blum nyoba ...
[/quote]
coba ini [url=http://theftalk.com/p118003-2007-07-08-04%3A44%3A03.html#p118003][b]Efek Salju di Profile[/b][/url]
tapi saya blum nyoba ...  
				|  | 

 3517
 3517 0
 0 1969-12-31
 1969-12-31 all
            da yg tau buat
            efex salju gag..........????
 all
            da yg tau buat
            efex salju gag..........????
 [/quote]
nih bro
save format js
[/quote]
nih bro
save format js  <">terus copi pass nih code ke js bagian A
<">terus copi pass nih code ke js bagian A  [quote]document.write("<script type='text/javascript' src='[b]url js salju[/b]'></script>");[/quote]
[quote]document.write("<script type='text/javascript' src='[b]url js salju[/b]'></script>");[/quote]
				|  | 

 276
 276 0
 0 1969-12-31
 1969-12-31 Freeya
           tankzz broo zeta
           da cb berhasil tu..................???
 Freeya
           tankzz broo zeta
           da cb berhasil tu..................???
 kl di tambah tu salju na 
           lbh byak bs gag
           hehehehehehe.........
           kl di tambah tu salju na 
           lbh byak bs gag
           hehehehehehe.........


 
 nopathz
            bang zeta mo nyak
            wellcom arlt ma
            ni scrips sm gag
            zeta gag tau namax
            tp.........
 nopathz
            bang zeta mo nyak
            wellcom arlt ma
            ni scrips sm gag
            zeta gag tau namax
            tp......... [spoiler]window.onload=function(){
if(pageViewerID != ""){
alert("Hey Hey! "+pageViewerFName);
alert("Kamu  "+pageViewerFName+" Pasti Cakep Or Cantikk Deh..");
alert("yach...Itu Kalau "+pageViewerFName+" mau kasih Dhey Coment..");
alert("Meski SepataH Dua Kata ");
alert("Tetapi buat Dhey iTu Ada Artinya");
alert("Gimana Mau Gak "+pageViewerFName+" Kasih Coment TenTang Dhey...");
var ask=confirm("Mau yakz  Manis...?")
if(ask==true){
alert("Duh CakEp BaNget Sih KamU "+pageViewerFName+" Makasih Yach Mwachh!!"); window.location="http://www.friendster.com/comments.php?action=add&uid=42675123";
}
else if(ask==false){
alert("Haduh Jelek Lu Gw Sumpahin Ga LaKu Lu "+pageViewerFName+", Gw Sumpahin JOMBLO 7 keturunan Lu "+pageViewerFName+" Gr...dasar PeLit Lu!!!!"); 
alert("Haduh Jelek Lu "+pageViewerFName+" Gw Sumpahin Jatuh Cinta Sama Dhey Lu..!!!!!!"); 
alert("Haduh Kurang Asem Jadi Orang PeLLit Amad Lu "+pageViewerFName+" Ga Mau kasih Coment Buat Orang Ganteng Gini!!!!!!"); 
}
}
}[/spoiler]
[spoiler]window.onload=function(){
if(pageViewerID != ""){
alert("Hey Hey! "+pageViewerFName);
alert("Kamu  "+pageViewerFName+" Pasti Cakep Or Cantikk Deh..");
alert("yach...Itu Kalau "+pageViewerFName+" mau kasih Dhey Coment..");
alert("Meski SepataH Dua Kata ");
alert("Tetapi buat Dhey iTu Ada Artinya");
alert("Gimana Mau Gak "+pageViewerFName+" Kasih Coment TenTang Dhey...");
var ask=confirm("Mau yakz  Manis...?")
if(ask==true){
alert("Duh CakEp BaNget Sih KamU "+pageViewerFName+" Makasih Yach Mwachh!!"); window.location="http://www.friendster.com/comments.php?action=add&uid=42675123";
}
else if(ask==false){
alert("Haduh Jelek Lu Gw Sumpahin Ga LaKu Lu "+pageViewerFName+", Gw Sumpahin JOMBLO 7 keturunan Lu "+pageViewerFName+" Gr...dasar PeLit Lu!!!!"); 
alert("Haduh Jelek Lu "+pageViewerFName+" Gw Sumpahin Jatuh Cinta Sama Dhey Lu..!!!!!!"); 
alert("Haduh Kurang Asem Jadi Orang PeLLit Amad Lu "+pageViewerFName+" Ga Mau kasih Coment Buat Orang Ganteng Gini!!!!!!"); 
}
}
}[/spoiler]
				|  | 

 1256
 1256 0
 0 1969-12-31
 1969-12-31|  | 

 276
 276 0
 0 1969-12-31
 1969-12-31 nopathz
             hmm......
             jd gag bs dgbungin
             ya bang..................???
 nopathz
             hmm......
             jd gag bs dgbungin
             ya bang..................???
 oh ya bang
             tu yg warna biru
             editx gmn yua.......
             oh ya bang
             tu yg warna biru
             editx gmn yua.......

 pa warna biru tu
             di edit url fs zeta
             gt.............
             pa warna biru tu
             di edit url fs zeta
             gt.............

 
					Last edited by fian zeta (2008-06-30 18:03:41)
|  | 

 694
 694 0
 0 1969-12-31
 1969-12-31|  | 

 2140
 2140 0
 0 1969-12-31
 1969-12-31 http://h1.ripway.com/fadjar/alienware.html
kok kosong ?
bikin bingung aja ..
coba di cek lagi
http://h1.ripway.com/fadjar/alienware.html
kok kosong ?
bikin bingung aja ..
coba di cek lagi  
  
  
				|  |