Untitled

 avatar
unknown
plain_text
19 days ago
1.3 kB
2
Indexable
Ah, got it! You're referring to in-browser JavaScript code that you can paste into the Chrome DevTools console to automatically play the Dino game—no need for Python or external tools.

Here’s how to do it:

Step 1: Open the Dino Game

Disconnect your internet (or visit chrome://dino in the Chrome browser).

Press Space to start the game.


Step 2: Open DevTools

Press F12 or Ctrl + Shift + I (or Cmd + Option + I on Mac).

Go to the Console tab.


Step 3: Paste the Auto-Play Code

var original = Runner.prototype.gameOver;
Runner.prototype.gameOver = function () {};
setInterval(() => {
      var tRex = Runner.instance_.tRex;
        var obstacles = Runner.instance_.horizon.obstacles;
          if (obstacles.length > 0) {
                var obstacle = obstacles[0];
                    var distance = obstacle.xPos - tRex.xPos;
                        if (distance < 100 && tRex.jumping === false) {
                                  tRex.startJump(0.5);
                        }
          }
}, 10);

What this does:

Disables game over.

Constantly checks the distance to the next obstacle.

Makes the dino jump if an obstacle is near.


You can tweak the distance < 100 value to make it react sooner or later.

Let me know if you want to make the bot smarter (e.g., to handle flying birds).


                        }
          }
})
Editor is loading...
Leave a Comment