hack dino

Dino game Hack

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.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

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!)

Yazar
Ahmed Blacklist
Günlük kurulumlar
0
Toplam kurulumlar
12
Değerlendirmeler
0 0 0
Versiyon
2024-07-26
Oluşturulma
22.12.2024
Güncellenme
22.12.2024
Boyut
1,28 KB
Lisans
N/A
Geçerli

// ==UserScript==
// @name hack dino
// @namespace http://tampermonkey.net/
// @version 2024-07-26
// @description Dino game Hack
// @author Hackdinoss
// @match https://chromedino.com/
// @icon https://seeklogo.com/images/D/dinosaur-game-logo-2723F385F0-seeklogo.com.png
// @grant none
// ==/UserScript==

(function () {
'use strict';
Runner. prototype. gameOver=function( ) {}
Runner.instance_.setSpeed(100);
/**
* Dino AI
*/
function dinoAI() {
if (Runner.instance_.horizon.obstacles.length > 0) {
let dist = Runner.instance_.horizon.obstacles[0].xPos;
let obj = Runner.instance_.horizon.obstacles[0];
let type = obj.typeConfig.type;
let speed = Runner.instance_.currentSpeed;
if (dist < speed * 22) {
if (type === 'PTERODACTYL' && obj.yPos < 60) {
if (!Runner.instance_.tRex.ducking) Runner.instance_.tRex.setDuck(true);
} else {
if (Runner.instance_.tRex.ducking) Runner.instance_.tRex.setDuck(false);
Runner.instance_.tRex.startJump(Runner.instance_.currentSpeed);
}
}
}
requestAnimationFrame(dinoAI);
}

dinoAI();
})();