Skip to content

A simple method to Skam your friends (and astound them too) by "hecking" Chrome's Dino Game.

Notifications You must be signed in to change notification settings

Bumblebee-3/Chrome-Dino-Hax

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Chrome-Dino-Hax

A simple method to Skam your friends (and astound them too) by "hecking" Chrome's Dino Game.

Hello, I am going to show you how to "hack" google dino game in few easy steps.

Removing Obstacles.

  • Open Inspect Element in Google Chrome Ctrl + Shift + I.
  • Find Console.
  • Paste this in your console:
var originalGameOver = Runner.prototype.gameOver // backing this up, Will be needed to stop the game...
Runner.prototype.gameOver = function(){} // changing it to an empty function XD

Now trying to play the game, you will notice that the dino does not detect the obstacles...

Increasing Speed.

  • Open Inspect Element in Google Chrome Ctrl + Shift + I.
  • Find Console.
  • Paste this in your console:
Runner.instance_.setSpeed(5000)//sets the dino's speed to 5000 points per second

Now trying to play the game, you will notice that the dino's speed Increases... Change the speed to -1 any your dino will go backwards XD

Stopping The Game

After some time, you may want to stop the game, to save the score. Because we have removed obstacles, the game will keep on going on forever. So, now we are going to use the variable defined earlier as originalGameOver to edit the GameOver function.

  • Open Inspect Element in Google Chrome Ctrl + Shift + I.
  • Find Console.
  • Paste this in your console:
Runner.prototype.GameOver = originalGameOver //resetting the gameOver function.

Now play, and the obstacles will be back. Then collide with the obstacle...

image

Also check out the "extra" folder for more hacks.

THE END - Hope you liked this simple tutorial. If you did, please star this repo and share it with friends :)

About

A simple method to Skam your friends (and astound them too) by "hecking" Chrome's Dino Game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published