How to cheat in Chrome’s Dino game

Chrome’s dinosaur game has been entertaining offline users since 2014. Appearing when you have no internet or by going to chrome://dino we’ve probably all seen or played it at least once.

The aim of the game is to get the little dinosaur as far as possible. While running you build up your score, whilst avoiding all the obstacles that are thrown at your from the right of the screen. If however you are bored of playing the game normally and want to know how to get invincibility or a ridiculously high score then your in the right place.

How to make the dino invincible

Inspect on dino game

To become invincible and cause the game to never end, you’ll need to access the DevTools menu by pressing F12.

To enable invincibility you need to enter the following into the console, copy & paste is recommended.

var oldGameOver = Runner.prototype.gameOver
First command on dino game

This has stored the old game over code into a variable called oldGameOver now we can overwrite the existing code. Now paste this line into the console.

Runner.prototype.gameOver = fn (){}
Second command on dino game

With this the game has no game over feature, that means you can happily run with no problems.

How to get High Scores

This works best whilst also using the the above trick to turn invincible. To get really high scores what we can do is change the dino’s speed, this means it’ll run faster, causing us to get more points.

The command is the following, 1000 is recommended as any higher might cause instability

Runner.instance_.setSpeed(1000)

Now there’s nothing stopping you from easily reaching over 100,000 points.