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

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 :: how to find angle between two points 
Javascript :: foreach nodejs 
Javascript :: export type you may need an appropriate loader to handle this file type 
Javascript :: javascript pad with leading zeros 
Javascript :: js how to get selectpicker value 
Javascript :: react native margin 
Javascript :: event listener to elements with class 
Javascript :: Datatable Change page size for pdf 
Javascript :: js create element 
Javascript :: Scrool to the bottom of a div 
Javascript :: replacing characters in string javascript 
Javascript :: require statement not part of import statement javascript 
Javascript :: js foreach querySelectorAll 
Javascript :: react-router-dom link target blank 
Javascript :: dont drag img 
Javascript :: jquery cancel ajax request on click 
Javascript :: write html is jsx extension for vscode 
Javascript :: order datatable 
Javascript :: nodejs get current directory 
Javascript :: delete all childs in node 
Javascript :: jquery get today date 
Javascript :: brand icons in next js 
Javascript :: string pop last char js 
Javascript :: node cron every second 
Javascript :: react native activityindicator 
Javascript :: yarn react-native-async-storage 
Javascript :: js get local date 
Javascript :: javascript hasownproperty 
Javascript :: js cleartimeout 
Javascript :: localstorage read all key 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =