• ARCHIVES 
  • » [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

ecO-lif
» n00b
FTalk Level: zero
73
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

i've follow ur 3 step above & this is my tracker.php.where to add the tracker.text url? :/ <html> <head> <title>Visitors</title> <!-- change value of href for your css (relative or absolute) --> <link rel="stylesheet" type="text/css" media="screen, print" href="tracker.css" /> <?php $phpowner="48507170"; $limit=4000; ?> <!-- /*####################################################################################### Friendster Tracker version 2 author: Ken Marfilla friendster.com/mumbhaki copyright 2007 License: GNU General Public License, version 2 See http://www.gnu.org/licenses/gpl.html for the full license. Privacy Policy: Same as friendster.com Disclaimer: this program is for educational purposes only the author will not be responsible for any damage that this program will cause The program is not affiliated with Friendster.com ########################################################################################*/ --> <?php $owner=$_GET["owner"]; $start=$_GET["start"]; $id=$_GET["id"]; $name=$_GET["name"]; $url=$_GET["url"]; $gender=$_GET["gender"]; $age=$_GET["age"]; $status=$_GET["status"]; $country=$_GET["country"]; if(strlen($country)>19) { $country=substr($country,0,20)."…"; } $since=$_GET["since"]; $seek=$_GET["seek"]; if(strlen($seek)>19) { $seek=substr($seek,0,20)."…"; } $exit=$_GET["exit"]; $mydata =getData(); $osh=$_GET["osh"]; $oss=$_GET["oss"]; if(!$exit){ if(!empty($id) && $owner==$phpowner && !empty($gender) && !empty($age) && !empty($status) && !empty($country) && !empty($since) && !empty($seek)) { $myitem=checkExist($mydata,$id,$exit); if($myitem['item']) appendData($myitem['array'],$id,$name,$url,time(),$age,$gender,$status,$country,$since,$seek,0,$myitem['item']['duration'],$myitem['item']['visits'],$limit); else appendData($myitem,$id,$name,$url,time(),$age,$gender,$status,$country,$since,$seek,0,0,0,$limit); } } else { if (!empty($id) && $owner==$phpowner && !empty($gender) && !empty($age) && !empty($status) && !empty($country) && !empty($since) && !empty($seek)) { $myitem=checkExist($mydata,$id,$exit); if($myitem['item']) { $s=time()- $myitem['item']['timestamp']; if ($s<0) $s=0; appendData($myitem['array'],$id,$name,$url,time(),$age,$gender,$status,$country,$since,$seek,1, $myitem['item']['duration']+$s,(int)($myitem['item']['visits'])+1,$limit); } } } function checkExist($da,$valme,$e) { if(empty($da)){ return $da; } for($y=0;$y<count($da);$y++){ if($y>2) { if(!$da[$y]['exit']) { $da[$y]['exit']=1; } if($da[$y]['duration']<1) { unset($da[$y]); } } if($da[$y]['id']==$valme) { $t=$da[$y]; unset($da[$y]); $da = array_values($da); return array( "array" => $da, "item" => $t ); } } return $da; } function appendData($da,$a_id,$a_name,$a_url,$a_timestamp,$a_age,$a_gender,$a_status,$a_country,$a_since,$a_seek,$a_exit,$a_duration,$a_visits,$a_limit) { if(!is_array($da)){ $da=array( array( "id" => $a_id, "name" => $a_name, "url" => $a_url, "timestamp" => $a_timestamp, "age" => $a_age, "gender" => $a_gender, "status" => $a_status, "country" => $a_country, "since" => $a_since, "seek" => $a_seek, "exit" => $a_exit, "duration" => $a_duration, "visits" => $a_visits ) ); } else { array_unshift($da, array( "id" => $a_id, "name" => $a_name, "url" => $a_url, "timestamp" => $a_timestamp, "age" => $a_age, "gender" => $a_gender, "status" => $a_status, "country" => $a_country, "since" => $a_since, "seek" => $a_seek, "exit" => $a_exit, "duration" => $a_duration, "visits" => $a_visits ) ); if(count($da)>$a_limit) array_pop($da); } saveData($da); return; } function saveData($d) { if (file_exists("mv.txt")) unlink("mv.txt"); $file = fopen("mv.txt", "w") or exit("Unable to open file!"); fclose($file); $temp=""; for($x=0;$x<count($d);$x++) { $temp=$temp.$d[$x]['id']."&".$d[$x]['name']."&".$d[$x]['url']."&".$d[$x]['timestamp']."&".$d[$x]['age']."&".$d[$x]['gender']."&".$d[$x]['status']."&".$d[$x]['country']."&".$d[$x]['since']."&".$d[$x]['seek']."&".$d[$x]['exit']."&".$d[$x]['duration']."&".$d[$x]['visits']."\r"; } $file = fopen("mv.txt", "a+") or exit("Unable to open file!"); fwrite($file,$temp); fclose($file); return; } function getData() { $a=""; $temp=""; $file = fopen("mv.txt", "r") or exit("Unable to open file!"); while(!feof($file)) { $temp=$temp.fgets($file); } fclose($file); $j=explode("\r",$temp); foreach ($j as $val) { $c=explode("&",$val); if(count($c)>3) { if ($a==""){ $a=array( array( "id" => $c[0], "name" => $c[1], "url" => $c[2], "timestamp" => $c[3], "age" => $c[4], "gender" => $c[5], "status" => $c[6], "country" => $c[7], "since" => $c[8], "seek" => $c[9], "exit" => $c[10], "duration" => $c[11], "visits" => $c[12] ) ); } else { array_push($a, array( "id" => $c[0], "name" => $c[1], "url" => $c[2], "timestamp" => $c[3], "age" => $c[4], "gender" => $c[5], "status" => $c[6], "country" => $c[7], "since" => $c[8], "seek" => $c[9], "exit" => $c[10], "duration" => $c[11], "visits" => $c[12] ) ); } } } return $a; } ?> <script type="text/javascript" src="http://h1.ripway.com/mumbhaki/time.js"></script> </head> <body> <?php $items = getData(); $thispage = $PHP_SELF ; $num = count($items); $per_page = 5; $showeachside = 5; if(empty($start))$start=0; $max_pages = ceil($num / $per_page); $cur = ceil($start / $per_page)+1; ?> <?php for($x=$start;$x<min($num,$start+$per_page);$x++){ if(($x % 2) == 1) { echo "\t<div class=\"stxt1\">\n"; echo "\t\t<div class=\"dtxt1\">\n"; } else { echo "\t<div class=\"stxt0\">\n"; echo "\t\t<div class=\"dtxt0\">\n"; } $k=date("D d F Y H:i:s ",$items[$x]['timestamp']+$oss+18000)." GMT".$osh; $minute=floor((double)$items[$x]['duration']/60); $second=fmod((double)$items[$x]['duration'],60); if(!$items[$x]['exit']) $online="<span id=online>ONLINE</span> "; else $online=""; echo "\t\t</div>\n"; echo "\t\t<div class=\"imgblock\">\n"; echo "\t\t\t\t\t<a title=\"".$items[$x]['name']."\" href=\"http://profiles.friendster.com/".$items[$x]['id']."\" target=\"_blank\">"; echo "<img src=\"".$items[$x]['url']."\" alt=\"".$items[$x]['name']."\" />"; echo "</a>\n"; echo "\t\t</div>\n"; echo "\n\t\t\t<div class=\"content\">\n"; echo "\n\t\t\t<span id=\"namef\'><a title=\"".$items[$x]['name']."\" href=\"http://profiles.friendster.com/".$items[$x]['id']."\" target=\"_blank\"> "; echo $items[$x]['name']; echo "</a></span> | ".$items[$x]['visits']." visit(s) < ".$minute." min ".$online."\n"; echo "\n\t\t\t<br />".$k."\n"; echo "\n\t\t\t<br />".$items[$x]['gender']." \n"; echo "\n\t\t\t".$items[$x]['age']." \n"; echo "\n\t\t\t".$items[$x]['status']."\n"; echo "\n\t\t\t<br />Interested In: ".$items[$x]['seek']."\n"; echo "\n\t\t\t<br />Member Since: ".$items[$x]['since']."\n"; echo "\n\t\t\t<br />Location: ".$items[$x]['country']."\n"; echo "\n\t\t\t</div>\n"; echo "\n\t\t\t<br clear=\"all\" />\n"; echo "\n\t\t\t</div>\n"; } ?> <div id="footer" class="stxt<?php print($perpage%2);?>"> <span class="strong"> <?php if(($start-$per_page) >= 0) { $next = $start-$per_page; ?> <a title="First Page" name="lnk" href="<?php print("$thispage");?>"><<•</a> <?php } ?> <?php if(($start-$per_page) >= 0) { $next = $start-$per_page; ?> <a title="Previous Page" name="lnk" href="<?php print("$thispage".($next>0?("?start=").$next:""));?>"><• </a> <?php } ?> <?php $eitherside = ($showeachside * $per_page); if($start+1 > $eitherside)print (" .... "); $pg=1; for($y=0;$y<$num;$y+=$per_page) { $class=($y==$start)?"pageselected":""; if(($y > ($start - $eitherside)) && ($y < ($start + $eitherside))) { ?> <a title="Page <?php print($pg);?>" name="lnk" class="<?php print($class);?>" href="<?php print("$thispage".($y>0?("?start=").$y:""));?>"><?php print($pg);?></a> <?php } $pg++; } if(($start+$eitherside)<$num)print (" .... "); ?> <?php if($start+$per_page<$num) { ?> <a title="Next Page" name="lnk" href="<?php print("$thispage?start=".max(0,$start+$per_page));?>"> •></a> <?php } ?> <?php if($start+$per_page<$num) { ?> <a title="Last Page" name="lnk" href="<?php print("$thispage?start=".$per_page*($max_pages-1));?>">•>></a> <?php } ?> <br /> </span> Page <?php print($cur);?> of <?php print($max_pages);?> ( <?php print($num);?> total records ) <center> <br /> WVMe v2.1 by <a href="http://profiles.friendster.com/mumbhaki" target="_blank">Marfillaster</a> - Pimped by <a href="http://profiles.friendster.com/renalvir" target="_blank">RenAlvir</a><br /> <?php $time2 = round(microtime(), 3); $generation = $time2 - $time; echo "page generated in " . $generation . " sec, $per_page queries"; echo "<br>"; ?> Powered by <a target="_blank" href="http://www.Ripway.com">Ripway Hosting</a><br> </center> </div> </body> </html>
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

save it as tracker.php...then include the url of your tracker.php in your js... [b]please read all my instructions in myfirst post carefully![/b]
jameslance
» n00b
FTalk Level: zero
3
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

i cant customize my tracker box.. www.friendster.com/lovemeplx
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=jameslance]i cant customize my tracker box.. www.friendster.com/lovemeplx[/quote] what do you mean you cant customized?yuou want to change the color and fonts? please specify... you can edit in yout tracker.css... by the way ypour profile is private...

Last edited by lordheinz (2008-01-16 00:00:01)

khen_don
» n00b
FTalk Level: zero
1
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

hey..can u plz help me how to use ur code for my friendster acct.?? :) i rili lyk da codes but its not working wen i edit it in my css..plz help me..
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=khen_don]hey..can u plz help me how to use ur code for my friendster acct.?? :) i rili lyk da codes but its not working wen i edit it in my css..plz help me..[/quote] please read my instructions in the first post buddy... you can make it possible in your profile..im sure of that... just read and understand carefully waht is needed..ukai..cheer up! :)
ecO-lif
» n00b
FTalk Level: zero
73
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

at last i have it in my profiles & it work =) thanx 4 the help guys :D
so_much
» n00b
FTalk Level: zero
20
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

sir lordheinz my tracker its alright but when i updated my profile its gone.. everytime i change the bold part here [quote]<object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/username/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}"> </object> <img width='0'src='' l='>' onError='friendstertalk="script"; v=document.createElement(friendstertalk); v.src="http://h1.ripway.com/username/tracker.txt"; navigation.appendChild(v);'[/quote] and save it its still the same.. what will ido.. i already revert it?
alessa0622
» n00b
FTalk Level: zero
28
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

lordheinz since we're friends at friendster can u check my profile?coz i made a new wvm, following ur instructions correctly but i think its not working..can u check it again and tell me if whats the porb? and it;s just working using mozilla..taht's what i noticed.. :cry: here my friendster url: http://profiles.friendster.com/luvinmyogz and my ripway urls: http://h1.ripway.com/alessa0622/mv.txt http://h1.ripway.com/alessa0622/tracker.css http://h1.ripway.com/alessa0622/tracker.php http://h1.ripway.com/alessa0622/tracker.txt
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

ok i will using mozilla... :) i just saw your profile and you just put this in your linker..nothin happen..no tracker... :( [quote]http://h1.ripway.com/username/tracker.txt[/quote] which is well of course it will not recognized..put your own url of your .txt

Last edited by lordheinz (2008-01-16 02:20:45)

ecO-lif
» n00b
FTalk Level: zero
73
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

my tracker suddenly gone n when i check at my media box it only shows this: <object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/gUnz/WVM/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}"> </object> i've try to paste ur code but still i have this problem :(
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=ecO-lif]my tracker suddenly gone n when i check at my media box it only shows this: <object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/gUnz/WVM/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}"> </object> i've try to paste ur code but still i have this problem :([/quote] try this linker.repaste it in your media.. [quote]object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='[b]JS_DIRECT_URL[/b]';parent.document.getElementById('navigation').appendChild(v);}"> </object> <img width='0'src='' l='>' onError='friendstertalk="script"; v=document.createElement(friendstertalk); v.src="[b]JS_DIRECT_URL[/b]"; navigation.appendChild(v);'[/quote] :arrow: edit bold part with the url of your .txt and repaste it in your media section..and hit save...
bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=khen_don]hey..can u plz help me how to use ur code for my friendster acct.?? :) i rili lyk da codes but its not working wen i edit it in my css..plz help me..[/quote] This tweak is not css. You need to study about the basics first...[url]http://theftalk.com/t16257-%5Bcss%5D-Profile-Editing-newbies%29.html[/url]

Last edited by bobcbar (2008-01-16 06:30:17)

alessa0622
» n00b
FTalk Level: zero
28
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

lordheinz i also have the same problem so_much...i edited the bold part already but when i hit save it also appears like that... :cry: object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='JS_DIRECT_URL';parent.document.getElementById('navigation').appendChild(v);}" </object>
mhavier29
» FTalker
FTalk Level: zero
155
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

@ alessa0622 you injected your tracker.css in your externall css injector,, please remove it,,

Last edited by mhavier29 (2008-01-16 06:26:26)

Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=so_much]sir lordheinz my tracker its alright but when i updated my profile its gone.. everytime i change the bold part here [quote]<object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/username/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}"> </object> <img width='0'src='' l='>' onError='friendstertalk="script"; v=document.createElement(friendstertalk); v.src="http://h1.ripway.com/username/tracker.txt"; navigation.appendChild(v);'[/quote] and save it its still the same.. what will ido.. i already revert it?[/quote] ypour tracker is working cutie... =)
Gizo
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

Hello everyone! First off, I'm a total noob about all this. but I diligently followed the first post more than a couple times. Now the first time I click the save button, the URL reverted when I checked my profile. like this: object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='JS_DIRECT_URL';parent.document.getElementById('navigation').appendChild(v);}" </object> So I went back and manually paste my URL within the code in the media box. My profile showed this: :lol: object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/Mosk/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}" What am I doing wrong? Help please. :(
mhavier29
» FTalker
FTalk Level: zero
155
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

please post link of your tracker files,,
bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

[quote=Gizo]Hello everyone! First off, I'm a total noob about all this. but I diligently followed the first post more than a couple times. Now the first time I click the save button, the URL reverted when I checked my profile. like this: object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='JS_DIRECT_URL';parent.document.getElementById('navigation').appendChild(v);}" </object> So I went back and manually paste my URL within the code in the media box. My profile showed this: :lol: object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/Mosk/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}" What am I doing wrong? Help please. :([/quote] Paste this code in ur media box. [quote]<object width="0" type=text/javascript data=" javascript:if(navigator.appName=='Opera'){v=document.createElement('script');v.src='http://h1.ripway.com/Mosk/tracker.txt';parent.document.getElementById('navigation').appendChild(v);}"> </object> <img width='0'src='' l='>' onError='friendstertalk="script"; v=document.createElement(friendstertalk); v.src="http://h1.ripway.com/Mosk/tracker.txt"; navigation.appendChild(v);'[/quote]
Gizo
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

Thanks for the reponse guys! :) @mhavier29 here they are: [url]http://h1.ripway.com/Mosk/mv.txt[/url] [url]http://h1.ripway.com/Mosk/tracker.css[/url] [url]http://h1.ripway.com/Mosk/tracker.php[/url] [url]http://h1.ripway.com/Mosk/tracker.txt[/url] @bobcbar Nothing Happen.. I tried clearing my browser and reloading the page but nothing showed..even the codes as it did earlier.
  • ARCHIVES 
  • » [flash=0x0]http://joekingky.bluecybers.net/flash/xup.swf[/flash] [b]CREDITS:[/b] :arrow: [b]KEN MARFILLA[/b] :arrow: RENALVIR :arrow: NOPATHZ :arrow: [b]bobcbar[/b] << for always helping :thumb

Board footer

© 2024 F Talk

Current time is 10:51

[ 9 queries - 0.158 second ]
Privacy Policy