Dino hackerman

Teh hackerman dino

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);

})();