Posts

Showing posts from October, 2021

Hacking Chrome Dinosaur Game

Image
 Hacking Chrome Dinosaur Game 1. Open Console: Using F12 or Inspect 2. Game Script:      Runner.prototype      var defRunner=Runner.prototype.gameOver      Runner.prototype.gameOver=function(){console.log("Fuck u Chrome")}      Runner.instance_.setSpeed(15000)    ►Normal Speed: Runner.instance_.setSpeed(10)  3. For all those wondering how to maintain this score before this resets to 0, and therefore would require to kill it before highest possible score . To reset to default values , use       Runner.instance_.setSpeed(10)       Runner.prototype.gameOver= defRunner defRunner was used to save the initial state.  And then let the dinosaur die at the highest possible score. Console var defRunner=Runner.prototype.gameOver   Runner.prototype.gameOver=function(){console.log("Fuck u Chrome")} Runner.instance_.setSpeed(15000)  Runner.instance_.setSpeed(10) ...