Git Product home page Git Product logo

chrome-t-rex-hacks's Introduction

Google Chrome Dino Hacks

Para entrar en el Dinosaurio sin cortar el cable del wifi: chrome://dino/ Scripts desarrollados por Edu Olivares

Como instalar el hack

Para "Instalar el hack" simplemente tienes que ir a la consola de desarrolladores (F12 o inspeccionar) y buscar la pestaña "Consola". Donde pegaremos el código que nosotros queramos. NECESITAMOS GOOGLE CHROME

Consola de Dessarrolladores

Códigos

  • Invencibilidad (Cualquiera de los dos funciona) Runner.instance_.gameOver = function(){}; Runner.prototype.gameOver = function() {}

  • Para quitar invencibilidad var original = Runner.prototype.gameOver

  • Aumento de Velocidad Runner.instance_.setSpeed(50)

    El 50 puedes cambialo al numero que quieras

  • Super salto Runner.instance_.Rex.setJumpVelocity(1000)

    El 1000 puedes cambialo al numero que quieras

  • Sin obstáculos Runner.instance_.playingIntro = true

  • Añadir nubes de fondo Runner.instance_.horizon.addCloud()

  • Quitar EL PRIMER obstáculo Runner.instance_.horizon.removeFirstObstacle()

  • Sacar la luna Runner.instance_.inverted = true

  • Multiplicador de puntos Runner.instance_.msPerFrame = 0.01

    Puedes cambiar el 0,01 pero recomiendo dejarlo como esta

  • Añadir puntos Runner.instance_.distanceRan = 900

    Puedes cambiar el 900 por la puntuación que tu quieras

EL BOT

A ver esto ya es un bot en condiciones, salta corre y hace todo solo, tu simplemente no toques nada. La instalación es la misma que los codigos.

function keyDown(e) { Podium = {}; var n = document.createEvent("KeyboardEvent"); Object.defineProperty(n, "keyCode", { get: function () { return this.keyCodeVal; }, }), n.initKeyboardEvent ? n.initKeyboardEvent( "keydown", !0, !0, document.defaultView, e, e, "", "", !1, "" ) : n.initKeyEvent( "keydown", !0, !0, document.defaultView, !1, !1, !1, !1, e, 0 ), (n.keyCodeVal = e), document.body.dispatchEvent(n); } function keyUp(e) { Podium = {}; var n = document.createEvent("KeyboardEvent"); Object.defineProperty(n, "keyCode", { get: function () { return this.keyCodeVal; }, }), n.initKeyboardEvent ? n.initKeyboardEvent( "keyup", !0, !0, document.defaultView, e, e, "", "", !1, "" ) : n.initKeyEvent( "keyup", !0, !0, document.defaultView, !1, !1, !1, !1, e, 0 ), (n.keyCodeVal = e), document.body.dispatchEvent(n); } setInterval(function () { Runner.instance_.horizon.obstacles.length > 0 && (Runner.instance_.horizon.obstacles[0].xPos < 25 * Runner.instance_.currentSpeed - Runner.instance_.horizon.obstacles[0].width / 2 && Runner.instance_.horizon.obstacles[0].yPos > 75 && (keyUp(40), keyDown(38)), Runner.instance_.horizon.obstacles[0].xPos < 30 * Runner.instance_.currentSpeed - Runner.instance_.horizon.obstacles[0].width / 2 && Runner.instance_.horizon.obstacles[0].yPos <= 75 && keyDown(40)); }, 5);

chrome-t-rex-hacks's People

Contributors

eduoliihezz avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.