Tuesday, March 29, 2022

Ways to cheat in Chrome Dino

 Based on my YouTube video


Got bored when No Internet when browsing in Chrome? The game Chrome Dino will make you un-bored. Impossible? It's because there's no ending in the game.
Hello were back again in Arcade 70 Coding. Today, I gonna show you the Ways on cheating in Chrome Dino. For changing the image of the runner sprite you will need internet connection. Now Let's get started.

1. Opening the Inspect tab

Easy. There are 2 ways to open the Inspect tab.
  • Right click anywhere in the game and click inspect.
  • Click the drop down menu : > More Tools > Developer Tools
And there. Just go the the Console tab and you're ready to hack.

2. Hacks

With these commands you can mess with the speed, powerups, etc. Just type these commands below and press enter.
  • Making the game in fullscreen mode
    Runner.instance_.setArcadeMode(true);
  • Making the Dino not moving forward but still look that the dino is running
    Runner.instance_.playingIntro = true;
  • Make the Dino can pass through the obstacle without dying
    Runner.instance_.gameOver = function(){};
  • Making the dino move faster or slower
    To adjust the speed, you can change the number.
    Runner.instance_.setSpeed(1000);

3. Turn Runner Dino to Sonic

Type  Runner.imageSprite  and replace the  data:image... into  https://i.imgur.com/7BuRkS9.png. Press Enter and start the game. And it will turn to sonic.

No comments:

Post a Comment

Using a custom mouse cursor using CSS

 If you can change the cursor on PC, how about it online. You dont need a .cur file. Using a image file works too. Here is how. 1. Creating ...