Hidden Hacks
The offline dinosaur game has plenty of hidden hacks and cheats accessible through Chrome’s Developer Tools. Let’s explore some of the best-known.
Make the Dinosaur Invincible
This enables players to play the game indefinitely. This hack replaces the normal gameOver() function with an empty one, allowing to continue playing even if your dino collides with a cactus or pterodactyl.
- Open the Console in Developer Tools.
- Paste the following command and press Enter. Runner.instance_.gameOver = function() {}
Change the game’s speed
A normal dino game starts at a speed of 6 which gradually increases. Setting the speed makes the game very fast!- Open the Console in Developer Tools.
- Paste the following command and press Enter. Runner.instance_.setSpeed(100)
Auto-jump
Make your dino automatically jump when there is an obstacle.- Open the Console in Developer Tools.
- Paste the following command and press Enter. setInterval(() => { Runner.instance_.horizon.obstacles.length > 0 ? Runner.instance_.tRex.jump() : null; }, 10);
Infinite Jump
Make your dino fly without and stay in the air forever.- Open the Console in Developer Tools.
- Paste the following command and press Enter. Runner.instance_.tRex.gravity = 0;
- Paste the following command and press Enter to make the dino jump and never come down. Runner.instance_.tRex.jumping = true;
Change background to night mode
This can instantly trigger the game’s night mode.
- Open the Console in Developer Tools.
- Paste the following command and press Enter. document.querySelector('body').style.filter = 'invert(1)';
Hundreds of games may be launched, but the Chrome dinosaur game will remain a timeless classic with a significant impact. While it has largely remained the same since its first appearance, there is enormous room for expansion. Google might not give in to the clamor of fans, but one thing is for sure, the Dino game will continue to entertain users for generations to come.