Gator_Bks

Script Animasi Tulisan Berjalan Kotak (Hacked)

Feb 26th, 2020 (edited)
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 20.04 KB | Source Code | 0 0
  1. <link href='http://fonts.googleapis.com/css?family=Fauna+One' rel='stylesheet' type='text/css'>
  2. <link rel='shortcut icon' href='http://moddingesp.es/favicon.ico'></link>
  3. <meta http-equiv="refresh" content="75">
  4.  
  5. <script language="JavaScript">
  6.     var brzinakucanja = 200;
  7.     var pauzapor = 2000;
  8.     var vremeid = null;
  9.     var kretanje = false;
  10.     var poruka = new Array();
  11.     var slporuka = 0;
  12.     var bezporuke = 0;
  13.     poruka[0] = " | [ Hacked By NaFaZ ] | "
  14.     function prikaz() {
  15.         var text = poruka[slporuka];
  16.         if (bezporuke < text.length) {
  17.             if (text.charAt(bezporuke) == " ")
  18.                 bezporuke++
  19.             var ttporuka = text.substring(0, bezporuke + 1);
  20.             document.title = ttporuka;
  21.             bezporuke++
  22.             vremeid = setTimeout("prikaz()", brzinakucanja);
  23.             kretanje = true;
  24.         }
  25.         else {
  26.             bezporuke = 0;
  27.             slporuka++
  28.             if (slporuka == poruka.length)
  29.             slporuka = 0;
  30.             vremeid = setTimeout("prikaz()", pauzapor);
  31.             kretanje = true;
  32.         }
  33.     }
  34.     function stop() {
  35.         if (kretanje)
  36.         clearTimeout(vremeid);
  37.         kretanje = false
  38.     }
  39.     function start() {
  40.         stop();
  41.         prikaz();
  42.     }
  43.     start();
  44. </script>
  45.  
  46.  
  47. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  48.  
  49. <meta name="keywords" content="[ HACKED BY NAFAZ ]">
  50. <meta HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
  51. <meta name="description" content="[ HACKED BY NAFAZ ]">
  52. <script type="text/javascript">
  53.     //<![CDATA[
  54.     try{
  55.         if (!window.CloudFlare) {
  56.             var CloudFlare=[{
  57.                 verbose:0,p:0,byc:0,owlid:0,mirage:0,oracle:0,paths:{
  58.                     cloudflare:"/cdn-cgi/nexp/v=2965651658/"
  59.                 },
  60.                 atok:"46d7245de8fe7573628a114e8d9dabf4",zone:"zonehmirrors.net",rocket:"0",apps:{
  61.                     "dnschanger_detector":{
  62.                         "fix_url":null
  63.                     }
  64.                 }
  65.             }];
  66.             document.write('<script type="text/javascript" src="//ajax.cloudflare.com/cdn-cgi/nexp/v=3037830340/cloudflare.min.js"><'+'\/script>')
  67.         }
  68.     }catch(a){};
  69.     //]]>
  70. </script>
  71.  
  72.  
  73. <script type="text/javascript">
  74.     //<![CDATA[
  75.     window.__CF=window.__CF||{};window.__CF.AJS={
  76.         "dnschanger_detector":{
  77.             "fix_url":null}
  78.         };
  79.     //]]>
  80. </script>
  81.  
  82.  
  83. <script src="http://code.jquery.com/jquery-latest.min.js"></script>
  84.  
  85. <script>
  86. var current_type = 1;
  87. (function($) {
  88.         function shuffle(a) {
  89.                 var i = a.length, j;
  90.                 while (i) {
  91.                         var j = Math.floor((i--) * Math.random());
  92.                         var t = a[i];
  93.                         a[i] = a[j];
  94.                         a[j] = t;
  95.                 }
  96.         }
  97.         function randomAlphaNum() {
  98.                 var rnd = Math.floor(Math.random() * 62);
  99.                 if (rnd >= 52) return String.fromCharCode(rnd - 4);
  100.                 else if (rnd >= 26) return String.fromCharCode(rnd + 71);
  101.                 else return String.fromCharCode(rnd + 65);
  102.         }
  103.         $.fn.rot13 = function() {
  104.                 this.each(function() {
  105.                         $(this).text($(this).text().replace(/[a-z0-9]/ig, function(chr) {
  106.                                 var cc = chr.charCodeAt(0);
  107.                                 if (cc >= 65 && cc <= 90) cc = 65 + ((cc - 52) % 26);
  108.                                 else if (cc >= 97 && cc <= 122) cc = 97 + ((cc - 84) % 26);
  109.                                 else if (cc >= 48 && cc <= 57) cc = 48 + ((cc - 43) % 10);
  110.                                 return String.fromCharCode(cc);
  111.                         }));
  112.                 });
  113.                 return this;
  114.         };
  115.         $.fn.scrambledWriter = function() {
  116.                 this.each(function() {
  117.                         var $ele = $(this), str = $ele.text(), progress = 0, replace = /[^\s]/g,
  118.                                 random = randomAlphaNum, inc = 3;
  119.                         $ele.text('');
  120.                         var timer = setInterval(function() {
  121.                                 $ele.text(str.substring(0, progress) + str.substring(progress, str.length - 1).replace(replace, random));
  122.                                 progress += inc
  123.                                 if (progress >= str.length + inc) { var nstr = $ele.text(); $ele.text(nstr.substring(0,nstr.length - 1));   current_type += 1; clearInterval(timer);}
  124.                         }, 100);
  125.                 });
  126.                 return this;
  127.         };
  128.         $.fn.typewriter = function() {
  129.                 this.each(function() {
  130.                         var $ele = $(this), str = $ele.html(), progress = 0;
  131.                         $ele.html('');
  132.                         var timer = setInterval(function() {
  133.                                 $ele.html(str.substring(0, progress++) + (progress & 1 ? '_' : ''));
  134.                                 if (progress >= str.length) { current_type += 1; clearInterval(timer);}
  135.                         }, 100);
  136.                 });
  137.          
  138.                 return this;
  139.         };
  140.         $.fn.unscramble = function() {
  141.                 this.each(function() {
  142.                         var $ele = $(this), str = $ele.text(), replace = /[^\s]/,
  143.                                 state = [], choose = [], reveal = 25, random = randomAlphaNum;
  144.                  
  145.                         for (var i = 0; i < str.length; i++) {
  146.                                 if (str[i].match(replace)) {
  147.                                         state.push(random());
  148.                                         choose.push(i);
  149.                                 } else {
  150.                                         state.push(str[i]);
  151.                                 }
  152.                         }
  153.                  
  154.                         shuffle(choose);
  155.                         $ele.text(state.join(''));
  156.                  
  157.                         var timer = setInterval(function() {
  158.                                 var i, r = reveal;
  159.                                 while (r-- && choose.length) {
  160.                                         i = choose.pop();
  161.                                         state[i] = str[i];
  162.                                 }
  163.                                 for (i = 0; i < choose.length; i++) state[choose[i]] = random();
  164.                                 $ele.text(state.join(''));
  165.                                 if (choose.length == 0) { current_type += 1; clearInterval(timer);}
  166.                         }, 200);
  167.                 });
  168.                 return this;
  169.         };
  170. })(jQuery);
  171.  
  172. function replaceAll(txt, replace, with_this) {
  173.     return txt.replace(new RegExp(replace, 'g'),with_this);
  174. }
  175.  
  176. eval(function(p,a,c,k,e,d){
  177.     e=function(c){
  178.         return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))
  179.     };
  180.     while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p
  181. }('$(k).1L(b(){a U=1K 1J();a n=$("#T").S();n=1I(n,\'1H\',k.1G.1F);n=n.1E(/1D/,U);$("#T").S(n);b t(){a u=k.v+"        ";a r=0;k.v=\'\';a R=g(b(){k.v=u.1C(0,r++)+(r&1?\'1B\':\'\');c(r>=u.1A){e(R);t()}},1z)}t();s("p");$("#1y").j();a Q=g(b(){c(h==2){$("#1x").f();$("#1w").j();e(Q)}},i);a P=g(b(){c(h==3){$("#1v").f();$("#1u").N();e(P)}},i);a O=g(b(){c(h==4){$("#1t").f();$("#1s").j();e(O)}},i);a M=g(b(){c(h==5){$("#1r").f();$("#1q").N();e(M)}},i);a L=g(b(){c(h==6){$("#1p").f();$("#1o").j();e(L)}},i);a K=g(b(){c(h==7){$("#1n").q();$("#1m").f(H);$("#1l").j();e(K)}},1k);a J=g(b(){c(h==8){$("#1j").f();$("#1i").j();e(J)}},i);a F=g(b(){c(h==9){I.1h(0,1g);I.1f();$("#1e").f();$("#1d").j();$(\'#p\').1c({1b:"1a%",19:"H%"},b(){$("#p").m("x","5");$("#p").m("w","5");$("#p").m("d",$(k).d()-G);$("#18").m("d",$(k).d()-G);$("#17").f()});e(F)}},i);a E=g(b(){c(h==10){$("#16").q();$("#15").f();$("#14").j();e(E)}},i);a D=g(b(){c(h==11){$("#13").q();$("#Z").f();$("#Y").j();e(D)}},i);a C=g(b(){c(h==12){$("#X").q();$("#W").f();$("#V").j();e(C)}},i)});s();b s(o){a d=$(k).d();a l=$(k).l();a B=$("#"+o).d();a y=$("#"+o).l();d=A.z((d-B)/2);l=A.z((l-y)/2);c(d<0){d=2}c(l<0){l=2}$("#"+o).m("x",d);$("#"+o).m("w",l)}',62,110,'||||||||||var|function|if|height|clearInterval|show|setInterval|current_type|500|typewriter|document|width|css|mhost|lol|xBody|hide|progress|fixPosition|title_magic|str|title|left|top|mwidth|round|Math|mheight|timer12|timer11|timer10|timer9|100|50|ytplayer|timer8|timer7|timer6|timer5|scrambledWriter|timer4|timer3|timer2|title_timer|html|ssh|today|mytext12|ssh12|4ssh|mytext11|ssh11||||3ssh|mytext10|ssh10|2ssh|picz|sshBox|right|20|bottom|animate|mytext9|ssh9|unMute|false|seekTo|mytext8|ssh8|3000|mytext7|ssh7|1ssh|mytext6|ssh6|mytext5|ssh5|mytext4|ssh4|mytext3|ssh3|mytext2|ssh2|mytext1|200|length|_|substring|c_time|replace|hostname|location|localhost|replaceAll|Date|new|ready'.split('|')))
  182. </script>
  183.  
  184. <body
  185.     bgcolor="#000"
  186.     marginwidth="0"
  187.     marginheight="0"
  188.     style="
  189.         background: black url()
  190.         no-repeat center center fixed;
  191.         -webkit-background-size: cover;
  192.         -moz-background-size: cover;
  193.         -o-background-size: cover;
  194.         background-size:cover;
  195.     "
  196.     onload="type_text()"
  197.     bottommargin="0"
  198.     rightmargin="0"
  199.     leftmargin="0"
  200.     topmargin="0"
  201. >
  202.  
  203. <style>
  204.     body{
  205.             font-family: "courier new";
  206.             font-size:80%;
  207.             color: #28FE14;
  208.     }
  209.  
  210.     .xBody{
  211.         width:660px;
  212.         height:450px;
  213.         position:absolute;
  214.         z-index: 9;
  215.     }
  216.     .ssh{
  217.         display:none;
  218.         z-index: 9;
  219.     }
  220.     .sshBox{
  221.         height:300px;
  222.         border: 4px solid white;
  223.             -moz-border-radius: 4px;
  224.             -webkit-border-radius: 4px;
  225.             -o-border-radius: 4x;
  226.             -khtml-border-radius: 4px;
  227.             border-radius: 4px;
  228.             z-index: 9;
  229.     }
  230.     .sshHead{
  231.         margin-bottom: 5px;
  232.         color:black;
  233.         font-weight: bold;
  234.         background-color: white;
  235.         height:20px;
  236.         z-index: 9;
  237.     }
  238.  
  239.     .greenBox{
  240.         padding-left: 3px;
  241.         position: absolute;
  242.         height:22px;
  243.         border: 1px solid #28FE14;
  244.         z-index: 9;
  245.     }
  246.     .picz{
  247.         position: absolute;
  248.         width:500px;
  249.         height:80%;
  250.         display:none;
  251.         right:2px;
  252.         top:2px;
  253.     }
  254. </style>
  255.  
  256.  
  257. <body onselectstart="return false" ondragstart="return false" oncontextmenu="return false" onLoad="writetext()">
  258.  
  259. <div class="xBody" id="xBody">
  260.     <div id="ssh">
  261.         <div class="sshBox" id="sshBox">
  262.             <div class="sshHead">NAFAZ WAS HERE....</div>
  263.                 <div id="1ssh">
  264.                     <span id="mytext1"> Indonesian Defacer </span><br>
  265.                     <div id="ssh2" class="ssh">Enter Password:<span id="mytext2"> NaFaZ </span></div>
  266.                     <div id="ssh3" class="ssh"><br>Last login : <span id="mytext3"> c_time</span></div>
  267.                     <div id="ssh4" class="ssh">root@NaFaZ:~$
  268.                         <span id="mytext4">
  269.                             sudo ufw disable
  270.                             <br>
  271.                             root@NaFaZ:~$ sudo systemctl stop NetworkManager.service
  272.                             <br>
  273.                             root@NaFaZ:~$ sudo systemctl disable NetworkManager.service
  274.                             <br>
  275.                             root@NaFaZ:~$ sudo nmcli networking off
  276.                             <br>
  277.                             root@NaFaZ:~$ sudo ip link set dev all down
  278.                         </span> </div>
  279.                     <br></br>
  280.                     <div id="ssh5" class="ssh" style="font-size:300%;" align="center">
  281.                         <span id="mytext5"></span>
  282.                     </div>
  283.                     <br>
  284.                     <div id="ssh5" class="ssh" style="font-size:280%;" align="center">
  285.                         <span id="mytext5"></span>
  286.                     </div>
  287.                     <div id="ssh6" class="ssh"><span id="mytext6"></span></div>
  288.                 </div>
  289.                 <br>
  290.                 <div id="2ssh">
  291.                     <div id="ssh7" class="ssh">
  292.                         <span id="mytext7">
  293.                             <h1>HACKED BY NAFAZ</h1>
  294.                             <br>
  295.                             <br>
  296.                             <br>
  297.                             YOUR SECURITY SYSTEM IS LOW
  298.                             <br>
  299.                             FIX YOUR SECURITY SISTEM
  300.                             <br>
  301.                             AND DON'T FORGET
  302.                             <br>
  303.                             NO SYSTEM IS SAFE
  304.                             <br>
  305.                         </span>
  306.                     </div>
  307.                     <div id="ssh5" class="ssh" style="font-size:280%;" align="center">
  308.                         <span id="mytext5">I'm Gator Bks</span>
  309.                     </div>
  310.                     <br>
  311.                 </div>
  312.                 <div id="ssh10" class="ssh" style="padding-left:5px;">
  313.                     Indonesian Defacer
  314.                     <span id="mytext10">Demands ---></span>
  315.                 </div>
  316.             </div>
  317.         </div>
  318.     </div>
  319. </div>
  320. <div class="picz" id="picz"></div>
  321. <div id="ytapiplayer"></div>
  322. <script>
  323.     eval(
  324.         function(
  325.             p,a,c,k,e,d){
  326.                 while(c--)if(k[c])p=p.replace(new RegExp('\\b'+c.toString(a)+'\\b','g'),k[c]);return p
  327.             }
  328.             ('w u(t){0=s.r("6");0.q();0.p();0.o(n)}7 4={m:"l"};7 2={k:"6"};j.i("h://g.f.e/v/d?c=1&b=0&a=3","9","1","1","8",5,5,4,2);',33,33,'ytplayer||atts||params|null|myytplayer|var||ytapiplayer|version|playerapiid|enablejsapi|1mlbypRQ878|com|youtube|www|http|embedSWF|swfobject|id|always|allowScriptAccess|true|setLoop|playVideo|mute|getElementById|document|playerId|onYouTubePlayerReady||function'.split('|')
  329.         )
  330.     )
  331. </script>
  332. <script type="text/javascript">
  333.     (function(){
  334.         var global = this;
  335.         var globalName = 'starField';
  336.         var numberOfStars = 90;
  337.  
  338.         /* total depth of space ;)*/
  339.         var depthDimentsion = 2000;
  340.  
  341.         /* % of space between browser and viewer.*/
  342.         var viewingDepth = 0.0001;
  343.  
  344.         /* % of space moved in one step.*/
  345.         var forwardVelocity = 0.3;
  346.         var d = depthDimentsion*(viewingDepth/100);
  347.         var planeDepth = depthDimentsion - d;
  348.         var fv = planeDepth*(forwardVelocity/100);
  349.         var zMultiplier = (depthDimentsion)/d;
  350.         var starObjs, starHTML;
  351.         var posMod, sy, sx, windowCenterY, windowCenterX;
  352.         var scaleXAdjust, scaleYAdjust;
  353.         if((document.layers)&&(this.Layer)){
  354.             starHTML = [
  355.             '<layer id=\"stars','',
  356.             '\" left=\"0\" top=\"0\" width=\"1\" height=\"1"',
  357.             ' bgColor=\"#FFFFFF\"><\/layer>'];
  358.         }else{
  359.             starHTML = [
  360.             '<div id="stars','',
  361.             '" style="position:absolute;width:1px;overflow:',
  362.             'hidden;height:1px;background-color:#FFFFFF;',
  363.             'font-size:1px">'
  364.         '</div>'];
  365.         }
  366.         function compatModeTest(obj){
  367.             if((document.compatMode)&&
  368.                  (document.compatMode.indexOf('CSS') != -1)&&
  369.                  (document.documentElement)){
  370.                 return document.documentElement;
  371.             }else if(document.body){
  372.                 return document.body;
  373.             }else{
  374.                 return obj;
  375.             }
  376.         }
  377.         function getWindowState(){
  378.             var global = this;
  379.             var readScroll = {scrollLeft:NaN,scrollTop:NaN};
  380.             var readSizeC = {clientWidth:NaN,clientHeight:NaN};
  381.             var readSizeI = {innerWidth:NaN,innerHeight:NaN};
  382.             var readScrollX = 'scrollLeft';
  383.             var readScrollY = 'scrollTop';
  384.             function getWidthI(){return readSizeI.innerWidth;}
  385.             function getWidthC(){return readSizeC.clientWidth|0;}
  386.             function getHeightI(){return readSizeI.innerHeight;}
  387.             function getHeightC(){return readSizeC.clientHeight|0;}
  388.             function getHeightSmart(){
  389.                     return retSmaller(getHeightI(), getHeightC());
  390.             }
  391.             function getWidthSmart(){
  392.                     return retSmaller(getWidthI(), getWidthC());
  393.             }
  394.             function setInnerWH(){
  395.                 theOne.getWidth = getWidthI;
  396.                 theOne.getHeight = getHeightI;
  397.             }
  398.             function retSmaller(inr, other){
  399.                 if(other > inr){
  400.                     setInnerWH();
  401.                     return inr;
  402.                 }else{
  403.                     return other;
  404.                 }
  405.             }
  406.             var theOne = {
  407.                 getScrollX:function(){return readScroll[readScrollX]|0;},
  408.                 getScrollY:function(){return readScroll[readScrollY]|0;},
  409.                 getWidth:getWidthC,
  410.                 getHeight:getHeightC
  411.             };
  412.             function main(){return theOne;}
  413.             function rankObj(testObj){
  414.                 var dv,dhN;
  415.                 if(testObj&&(typeof testObj.clientWidth == 'number')&&
  416.                      (typeof testObj.clientHeight == 'number')){
  417.                     if(((dv = global.innerHeight - testObj.clientHeight) >= 0)&&
  418.                          ((dh = global.innerWidth - testObj.clientWidth) >= 0)){
  419.                         if(dh == dv){
  420.                             return 0;
  421.                         }else if((dh&&!dv)||(dv&&!dh)){
  422.                             return (dh+dv);
  423.                         }
  424.                     }
  425.                 }
  426.                 return NaN;
  427.             }
  428.             if((typeof global.innerHeight == 'number')&&
  429.                  (typeof global.innerWidth == 'number')){
  430.                 readSizeI = global;
  431.                 var bodyRank = rankObj(document.body);
  432.                 var rankDocEl = rankObj(document.documentElement);
  433.                 var selEl = null;
  434.                 if(!isNaN(bodyRank)){
  435.                     if(!isNaN(rankDocEl)){
  436.                         if(bodyRank < rankDocEl){
  437.                             selEl = document.body;
  438.                         }else if(bodyRank > rankDocEl){
  439.                             selEl = document.documentElement;
  440.                         }else{
  441.                             selEl = compatModeTest(document.body);
  442.                         }
  443.                     }else{
  444.                         selEl = document.body;
  445.                     }
  446.                 }else if(!isNaN(rankDocEl)){
  447.                     selEl = document.documentElement;
  448.                 }
  449.                 if(selEl){
  450.                     readSizeC = selEl
  451.                     theOne.getWidth = getWidthSmart;
  452.                     theOne.getHeight = getHeightSmart;
  453.                 }else{
  454.                     setInnerWH();
  455.                 }
  456.             }else{
  457.                 readSizeC = compatModeTest(readSizeC);
  458.             }
  459.             if((typeof global.pageYOffset == 'number')&&
  460.                  (typeof global.pageXOffset == 'number')){
  461.                 readScroll = global;
  462.                 readScrollY = 'pageYOffset';
  463.                 readScrollX = 'pageXOffset';
  464.             }else{
  465.                 readScroll = compatModeTest(readScroll);
  466.             }
  467.             return (getWindowState = main)();
  468.         }
  469.         var windowState = getWindowState();
  470.         function readWindow(){
  471.             scaleYAdjust = (((windowCenterY =
  472.                             (windowState.getHeight() >>1)) - 16)*
  473.                                                      zMultiplier);
  474.             scaleXAdjust = (((windowCenterX =
  475.                             (windowState.getWidth() >> 1)) - 16)*
  476.                                                     zMultiplier);
  477.             sy = windowCenterY + windowState.getScrollY();
  478.             sx = windowCenterX + windowState.getScrollX();
  479.         }
  480.         function getStyleObj(id){
  481.             var obj = null;
  482.             if(document.getElementById){
  483.                 obj = document.getElementById(id);
  484.             }else if(document.all){
  485.                 obj = document.all[id];
  486.             }else if(document.layers){
  487.                 obj = document.layers[id];
  488.             }
  489.             return ((typeof obj != 'undefined')&&
  490.                     (typeof obj.style != 'undefined'))?
  491.                                             obj.style:obj;
  492.         }
  493.         function starObj(id, parent, prv){
  494.             var next,reset;
  495.             var divClip, div = getStyleObj("stars"+id);
  496.             var y,x,z,v,dx,dy,dm,dm2,px,py,widthPos,temp;
  497.             (reset = function(){
  498.                 px = Math.random()<0.5 ? +1 : -1;
  499.                 py = Math.random()<0.5 ? +1 : -1;
  500.                 y = ((Math.random()*Math.random()*
  501.                         scaleYAdjust)+windowCenterY);
  502.                 x = ((Math.random()*Math.random()*
  503.                         scaleXAdjust)+windowCenterX);
  504.                 widthPos = (x + zMultiplier);
  505.                 z = 0;
  506.             })();
  507.             z = Math.random()*planeDepth*0.8;
  508.             function step(){
  509.                 temp = x * (v = d/(depthDimentsion - z));
  510.                 dm = ((dm2 = ((widthPos * v)-temp)|0)>>1);
  511.                 dy = (y * v);
  512.                 dx = (temp);
  513.             }
  514.             if(div){
  515.                 if(!posMod){
  516.                     posMod = (typeof div.top == 'string')?'px':0;
  517.                 }
  518.                 divClip =   ((typeof div.clip != 'undefined')&&
  519.                                  (typeof div.clip != 'string'))?
  520.                                                  div.clip:div;
  521.                 this.position = function(){
  522.                     step();
  523.                     if(((z += fv) >= planeDepth)||
  524.                          ((dy+dm) > windowCenterY)||
  525.                         ((dx+dm) > windowCenterX)){
  526.                         reset();
  527.                         step();
  528.                         dm = 0;
  529.                     }
  530.                     div.top = ((sy+(py*dy)-dm)|0)+posMod;
  531.                     div.left = ((sx+(px*dx)-dm)|0)+posMod;
  532.                     divClip.width = (divClip.height = dm2+posMod);
  533.                     next.position();
  534.                 };
  535.             }else{
  536.                 this.position = function(){return;};
  537.             }
  538.             if(++id < numberOfStars){
  539.                 next = new starObj(id, parent)
  540.             }else{
  541.                 next = parent
  542.             }
  543.         }
  544.         function init(){
  545.             if(!getStyleObj("stars"+(numberOfStars-1))){
  546.                 setTimeout(starField, 200);
  547.             }else{
  548.                 readWindow();
  549.                 starObjs = new starObj(0, init);
  550.                 init.act();
  551.             }
  552.         };
  553.         init.position = function(){return;}
  554.         init.act = function(){
  555.             readWindow();
  556.             starObjs.position();
  557.             setTimeout(init.act,50);
  558.         };
  559.         init.act.toString = function(){
  560.             return globalName+'.act()';
  561.         };
  562.         init.toString = function(){
  563.             while(global[globalName])globalName += globalName;
  564.             global[globalName] = this;
  565.             return globalName+'()';
  566.         };
  567.         for(var c = numberOfStars;c--;){
  568.             starHTML[1] = c;
  569.             document.write(starHTML.join(''));
  570.         }
  571.         setTimeout(init, 200);
  572.     })();
  573. </script>
  574. <script Language='Javascript'>
  575.     <!-- Lol Many scripts -->
  576.     document.write(unescape('%3C%53%63%72%69%70%74%20%4C%61%6E%67%75%61%67%65%3D%27%4A%61%76%61%73%63%72%69%70%74%27%3E%0A%3C%21%2D%2D%20%48%54%4D%4C%20%45%6E%63%72%79%70%74%69%6F%6E%20%62%79%20%4D%61%72%6B%65%74%61%63%74%69%63%6F%2E%63%6F%6D%20%2D%2D%3E%0A%3C%21%2D%2D%0A%64%6F%63%75%6D%65%6E%74%2E%77%72%69%74%65%28%75%6E%65%73%63%61%70%65%28%27%25%33%43%25%35%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%32%30%25%34%43%25%36%31%25%36%45%25%36%37%25%37%35%25%36%31%25%36%37%25%36%35%25%33%44%25%32%37%25%34%41%25%36%31%25%37%36%25%36%31%25%37%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%32%37%25%33%45%25%30%41%25%33%43%25%32%31%25%32%44%25%32%44%25%32%30%25%34%38%25%35%34%25%34%44%25%34%43%25%32%30%25%34%35%25%36%45%25%36%33%25%37%32%25%37%39%25%37%30%25%37%34%25%36%39%25%36%46%25%36%45%25%32%30%25%36%32%25%37%39%25%32%30%25%34%44%25%36%31%25%37%32%25%36%42%25%36%35%25%37%34%25%36%31%25%36%33%25%37%34%25%36%39%25%36%33%25%36%46%25%32%45%25%36%33%25%36%46%25%36%44%25%32%30%25%32%44%25%32%44%25%33%45%25%30%41%25%33%43%25%32%31%25%32%44%25%32%44%25%30%41%25%36%34%25%36%46%25%36%33%25%37%35%25%36%44%25%36%35%25%36%45%25%37%34%25%32%45%25%37%37%25%37%32%25%36%39%25%37%34%25%36%35%25%32%38%25%37%35%25%36%45%25%36%35%25%37%33%25%36%33%25%36%31%25%37%30%25%36%35%25%32%38%25%32%37%25%32%35%25%33%33%25%34%33%25%32%35%25%33%36%25%33%32%25%32%35%25%33%36%25%34%36%25%32%35%25%33%36%25%33%34%25%32%35%25%33%37%25%33%39%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%34%36%25%32%35%25%33%36%25%34%35%25%32%35%25%33%36%25%34%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%39%25%32%35%25%33%36%25%33%34%25%32%35%25%33%36%25%34%36%25%32%35%25%33%37%25%33%37%25%32%35%25%33%36%25%34%35%25%32%35%25%33%33%25%34%34%25%32%35%25%33%32%25%33%32%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%33%35%25%32%35%25%33%37%25%33%34%25%32%35%25%33%37%25%33%35%25%32%35%25%33%37%25%33%32%25%32%35%25%33%36%25%34%35%25%32%35%25%33%32%25%33%30%25%32%35%25%33%36%25%33%36%25%32%35%25%33%36%25%33%31%25%32%35%25%33%36%25%34%33%25%32%35%25%33%37%25%33%33%25%32%35%25%33%36%25%33%35%25%32%35%25%33%32%25%33%32%25%32%35%25%33%33%25%34%35%25%32%35%25%33%30%25%34%31%25%32%37%25%32%39%25%32%39%25%33%42%25%30%41%25%32%46%25%32%46%25%32%44%25%32%44%25%33%45%25%30%41%25%33%43%25%32%46%25%35%33%25%36%33%25%37%32%25%36%39%25%37%30%25%37%34%25%33%45%27%29%29%3B%0A%2F%2F%2D%2D%3E%0A%3C%2F%53%63%72%69%70%74%3E'));
  577. </Script>
Advertisement
Add Comment
Please, Sign In to add comment