Dino hackerman

Teh hackerman dino

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Dino hackerman
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Teh hackerman dino
// @author       codingMASTER398
// @match        https://chrometrex.com/
// @match        https://dino-chrome.com/
// @grant        none
// ==/UserScript==

(function() {
    var para = document.createElement("button");
    para.innerHTML = "Stand still. Why?";
    para.onclick = function() {Runner.instance_.stop()};
    document.body.prepend(para);


    var para = document.createElement("button");
    para.innerHTML = "Set speed 10";
    para.onclick = function() {Runner.instance_.setSpeed(10)};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Set speed 100";
    para.onclick = function() {Runner.instance_.setSpeed(100)};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Set speed 1000";
    para.onclick = function() {Runner.instance_.setSpeed(1000)};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Kill dino";
    para.onclick = function() {Runner.instance_.gameOver()};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Disable death";
    para.onclick = function() {Runner.instance_.gameOver = function(){};};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Infinite high score";
    para.onclick = function() {Runner.instance_.saveHighScore(9999999);};
    document.body.prepend(para);



    var para = document.createElement("button");
    para.innerHTML = "Yeet";
    para.onclick = function() {Runner.instance_.tRex.setJumpVelocity(100)};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Delete everything";
    para.onclick = function() {delete Runner.instance_.tRex};
    document.body.prepend(para);

    var para = document.createElement("button");
    para.innerHTML = "Distance hack";
    para.onclick = function() {Runner.instance_.distanceRan = 99999999};
    document.body.prepend(para);

})();