Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

dinosaur game hack

// Go to the dinosaur game (chrome:dino)
// Press Ctrl+Shift+C (Command+Shift+C for mac)
// Go to console
// Copy paste any of these codes: (You can put as many as you want)

// Invinsabilaty:
Runner.prototype.gameOver = function (){}

// Change jump height:
Runner.instance_.tRex.setJumpVelocity(/*Any num you want*/)

// Change Speed:
Runner.instance_.setSpeed(/*Any num you want*/)
Comment

hack google dinosaur

Runner.prototype.gameOver = function (){}
Comment

how to hack the chrome dinosaur game

1. Inspect (Not all browsers support this)
2. Go to console
3. Paste this code "Runner.prototype.gameOver = function (){}" without the "
4. Start running and you're done
Comment

dinosaur game hacks

function() {
    this.playSound(this.soundFx.HIT);
    vibrate(200);

    this.stop();
    this.crashed = true;
    this.distanceMeter.achievement = false;

    this.tRex.update(100, Trex.status.CRASHED);

    // Game over panel.
    if (!this.gameOverPanel) {
      this.gameOverPanel = new GameOverPanel(this.canvas,
          this.spriteDef.TEXT_SPRITE, this.spriteDef.RESTART,
          this.dimensions);
    } else {
      this.gameOverPanel.draw();
    }

    // Update the high score.
    if (this.distanceRan > this.highestScore) {
      this.highestScore = Math.ceil(this.distanceRan);
      this.distanceMeter.setHighScore(this.highestScore);
    }

    // Reset the time clock.
    this.time = getTimeStamp();
  }
Comment

PREVIOUS NEXT
Code Example
Javascript :: is string javascript 
Javascript :: axios send bearer token 
Javascript :: create random 4 digit number js 
Javascript :: counterup cdn 
Javascript :: number to char js 
Javascript :: javascript check if function exists 
Javascript :: swiper.js cdn 
Javascript :: br in react native 
Javascript :: jquery submit form via ajax 
Javascript :: scroll jquery to anchor 
Javascript :: jquery checkbox is checked 
Javascript :: js get initials from name 
Javascript :: settimeout jquery 
Javascript :: react native init specific version 
Javascript :: store data in localstorage javascript 
Javascript :: js vanilla dom ready 
Javascript :: onclick javascript confirm 
Javascript :: jest wait for x seconds 
Javascript :: how to get the value of dropdown in jquery 
Javascript :: serialize and send form data jquery ajax 
Javascript :: how to run a vue js hello world app in vue version 3 
Javascript :: javascript scroll to element 
Javascript :: how to set an attribute to ignore null value json c# 
Javascript :: javascript can you defer inline 
Javascript :: urlencode jquery 
Javascript :: js arrondir a deux decimal 
Javascript :: javascript convert between string and ascii 
Javascript :: css in console.log 
Javascript :: How to tell if an attribute exists on an object 
Javascript :: jquery scroll to top of div animate 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =