How do you hack the Dino game with inspect?

Answered by Randy McIntyre

To hack the Dino game using the inspect feature in Chrome DevTools, follow these steps:

1. Open Google Chrome and enter chrome://dino in the address bar. This will take you to the Dino game, which appears when there is no internet connection.

2. Once the game starts, play for a few seconds until you are comfortable with the controls and gameplay.

3. To access Chrome DevTools, right-click anywhere on the screen and select “Inspect” from the menu that appears. Alternatively, you can use the keyboard shortcut Ctrl+Shift+I (or Cmd+Option+I on Mac).

4. The Chrome DevTools window will open on the right side of the browser window, showing various tabs such as Elements, Console, Network, etc.

5. In the DevTools window, click on the “Console” tab. This is where we can enter commands to modify the game and hack it.

6. To hack the Dino game, we can manipulate the game’s JavaScript code. In the console, you can type JavaScript commands and see the output instantly.

7. One way to hack the Dino game is by changing the speed of the game. You can do this by entering the following command in the console:

“`javascript
Runner.instance_.setSpeed(100)
“`

The above command sets the game speed to 100, but you can change the value to whatever speed you prefer. This will make the game faster or slower, depending on the value you set.

8. Another way to hack the Dino game is by modifying the score. You can enter the following command to set a desired score:

“`javascript
Runner.instance_.score = 1000
“`

This will instantly set your score to 1000. Again, you can change the value to any score you want.

9. You can also make the Dino jump higher or lower by changing the gravity value. Enter the following command to adjust the gravity:

“`javascript
Runner.instance_.tRex.config.GRAVITY = 2
“`

By increasing or decreasing the gravity value, you can control the height of the Dino’s jump.

10. Additionally, you can enable invincibility mode by entering the following command:

“`javascript
Runner.instance_.setArcadeMode(true)
“`

This will make the Dino invincible, allowing it to pass through obstacles without any collisions.

11. Remember, hacking the game using inspect is for educational and experimental purposes only. It’s not intended for cheating or gaining unfair advantages in the game.

12. After you have finished hacking and experimenting, you can close the DevTools window by clicking the “x” in the top right corner or pressing the keyboard shortcut Ctrl+Shift+I (or Cmd+Option+I on Mac) again.

Please note that hacking the game in this way only affects your local instance and does not modify the actual game for other players. Have fun exploring and experimenting with the Dino game!