SS Council wrote: |
I think that post just about covers it.
SVS used BanG to deal with an in-zone personal fight. SVS has been removed as a BanG operator. Then he decided to delete all metal gear forums and web pages. The same server that he banned Kirk for not granting him access to. MG has requested that he no longer represent the zone in SSC. End of story. Suggestions welcomed for a new BanG operator. Alex / Ghost |
Code: Show/Hide function moveIt(){ var top, left; top = Math.floor(Math.random()*400); left = Math.floor(Math.random()*400); if(link) { link.style.top=top; link.style.left=left; } if(image) { image.style.top=top; image.style.left=left; } } function movePost(){ var top, left; top = Math.floor(Math.random()*200); left = Math.floor(Math.random()*200); if(post_link) { post_link.style.top=top; post_link.style.left=left; } if(post_img) { post_img.style.top=top; post_img.style.left=left; } } function shakeIt() { for (i = 50; i > 0; i-=15) { for (j = 2; j > 0; j--) { window.moveBy(0,i); window.moveBy(i,0); window.moveBy(0,-i); window.moveBy(-i,0); } } } var link, image, post_link, post_img; var anchors = document.getElementsByTagName("a"); for(i=0;i<anchors.length;i++) { if(anchors[i].href.indexOf("index.php")!=-1 && !link) { // link = anchors[i]; } if(anchors[i].href.indexOf("makemessage.php")!=-1 && !post_link) { post_link = anchors[i]; } } var imgs = document.getElementsByTagName("img"); for(i=0;i<imgs.length;i++) { if(imgs[i].src.indexOf("logo_phpBB-SH.png")!=-1 && !image) { // image = imgs[i]; } if(imgs[i].src.indexOf("post.gif")!=-1 && !post_img) { post_img = imgs[i]; } } if(link) { link.onmouseover = moveIt; link.onclick = moveIt; link.href = "javascript:moveIt();"; link.style.position = "relative"; link.style.zIndex = 10; } if(image) { image.onmouseover = moveIt; image.onclick = moveIt; image.style.position = "relative"; image.style.zIndex = 10; } if(post_link) { post_link.onmouseover = movePost; post_link.onclick = movePost; post_link.href = "javascript:movePost();"; post_link.style.position = "relative"; post_link.style.zIndex = 10; } if(post_img) { post_img.onmouseover = movePost; post_img.onclick = movePost; post_img.style.position = "relative"; post_img.style.zIndex = 10; } |
Chambahs wrote: |
Isnt that what you did last year MGB? Think up some new stuff :-p |