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 :: js form check all required input 
Javascript :: typescript how to mode json files when compile 
Javascript :: loop in object javascript 
Javascript :: fetch 
Javascript :: Could not find the drag and drop manager in the context of ResourceEvents. Make sure to wrap the top-level component of your app with DragDropContext app.js 
Javascript :: libraries like html-react-parser 
Javascript :: how to reload window in javascript 
Javascript :: Loop array backwards in JS 
Javascript :: async for loop 
Javascript :: discord.js ban command 
Javascript :: useScreens() react native 
Javascript :: jquery forEach is not a function 
Javascript :: js find array return true false 
Javascript :: stylelint default config 
Javascript :: calculus of finite differences calculator 
Javascript :: jquery target partial id 
Javascript :: add scss in next js 
Javascript :: react apexcharts pie props 
Javascript :: how to print numbers from 1 to 100 in javascript 
Javascript :: how to uncheck a radio button 
Javascript :: nesting in react js 
Javascript :: value change event jquery 
Javascript :: redirect if not logged in next js 
Javascript :: serving html file using node.js 
Javascript :: js order string 
Javascript :: javascript set query parameter 
Javascript :: fetch data in next js 
Javascript :: click right mouse javascript 
Javascript :: how to trigger on input event in javascript 
Javascript :: multiple click events in react 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =