There are currently ? people playing RuneScape!
RuneScape
RuneScape is a massive 3d multiplayer adventure, with monsters
to kill, quests to complete, and treasure to win. You control your
own character who will improve and become more powerful the more you play.
Click here to play
var winwidth; var winheight; var flakes = []; function initSnow() { winwidth = window.innerWidth; winheight = window.innerHeight; var count = winheight / 20; for (var i = 0; i < count; i++) { var flake = document.createElement("div"); flake.style.position = "absolute"; flake.style.zIndex = 9001; document.body.appendChild(flake); flake.data = {}; setupFlake(flake); flakes.push(flake); } setInterval(letItSnow, 50); } function setupFlake(flake) { flake.data.x = Math.round(Math.random()*winwidth-56); flake.data.y = -Math.round(Math.random()*winheight)-50; flake.data.fallRate = Math.round(Math.random()*5)+3; flake.data.fontSize = Math.round(Math.random()*30)+16; flake.data.rotation = Math.round(Math.random()*360); if (flake.childNodes.length > 0) { flake.removeChild(flake.childNodes[0]); } flake.appendChild( document.createTextNode( String.fromCharCode( Math.round(Math.random()*2)+10052 ) ) ); flake.style.fontSize = flake.data.fontSize + "px"; flake.style.top = flake.data.y + "px"; flake.style.color = "#FFF"; flake.style.opacity = (flake.data.fontSize - 16) / 40 + 0.3; } function letItSnow() { winwidth = window.innerWidth; winheight = document.documentElement.scrollHeight; for (var i = 0; i < flakes.length; i++) { var flake = flakes[i]; var data = flake.data; if (data.y + data.fontSize + data.fallRate > winheight-16) { setupFlake(flake); } data.y += data.fallRate; var x = data.x + Math.cos(data.y/100)*25; if (x + data.fontSize > winwidth-10) { x = winwidth - data.fontSize - 10; } var rotation = (flake.data.rotation + (+new Date())/10)%360; flake.style.transform = "rotateY("+rotation+"deg)"; flake.style.webkitTransform = "rotateY("+rotation+"deg)"; flake.style.left = x + "px"; flake.style.top = data.y + "px"; } } initSnow();
Error:
Access DeniedError Code: 7002:88012