Dino game test wordpress 1

T-Rex Game – Google Dino Run

var user_name = localStorage.getItem(“userName”);
if(user_name==null) user_name = “”;

Dinosaur T-Rex Game

This Easter Egg is usually hidden on the No Internet connection error page in Google’s Chrome web browser and played offline. Here, however, you can play the hacked Dino T-Rex Runner Game online and compete with other players. Press the space bar to start the game. Use the up and down arrow keys to control the dinosaur. Try to score the maximum points.

name not set mute S

Top scores of the day

1 ☪TURKEY☪ 9992
2 The one who can 9802
3 SAVE PALESTINE 9294
4 Joey F 8670
5 KuPPer 8033
6 LionStar05 6634
7 Mr. Saslow 6602
Advertisement




(adsbygoogle = window.adsbygoogle || []).push({});

T-Rex Runner Sprite
T-Rex Runner Sprite 1



var muteSnd = localStorage.getItem(“muteSnd”),
muteBtn = document.getElementById(“mutebtn”),
userN = document.getElementById(“user”);
if (muteSnd==null||muteSnd==0) {
muteSnd = false;
muteBtn.innerText=”mute”;
} else {
muteSnd = true;
muteBtn.innerText=”unmute”;
}
function Mute() {
if (muteSnd) {
muteSnd = false;
localStorage.setItem(“muteSnd”, 0);
muteBtn.innerText=”mute”;
} else {
muteSnd = true;
localStorage.setItem(“muteSnd”, 1);
muteBtn.innerText=”unmute”;
}
document.getElementById(“mutebtn”).blur();
document.getElementById(“main-frame-error”).focus();
}
function getUserName(){userN.innerText=user_name;if(user_name==””)userN.innerText=”name not set”;}
function setUserName(){
var e_name = “”;
e_name=prompt(“Enter name”,user_name);
if(!e_name==”||!e_name==null){
user_name=e_name;
userN.innerText=user_name;
localStorage.setItem(“userName”, user_name);
document.getElementById(“user”).blur();
document.getElementById(“main-frame-error”).focus();
}
}
function updateRecords() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById(“records”).innerHTML = this.responseText;
}
};
xhttp.open(“GET”, “/ajax/table.php?” + new Date().getTime(), true);
xhttp.send();
}
window.addEventListener(‘keydown’, function(e) {
if(e.keyCode == 32 && e.target == document.body) {
e.preventDefault();
}
});
function doScreenshot(){
var canvas = document.getElementsByClassName(‘runner-canvas’)[0];
var screens = document.getElementById(‘screenshot’);
dataURL = canvas.toDataURL(“image/png”);
screens.setAttribute(‘href’, dataURL);
}
function Zoom(){
if ( document.body.classList.contains(‘sizegx12’) ){
document.body.classList.replace(‘sizegx12′,’sizegx15’);
} else if ( document.body.classList.contains(‘sizegx15’) ){
document.body.classList.remove(‘sizegx15’);
} else document.body.classList.add(‘sizegx12’);
}
document.onload = updateRecords();

window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag(‘js’, new Date());
gtag(‘config’, ‘UA-62795078-2’);

Design a site like this with WordPress.com
Get started