hack dino

Dino game Hack

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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.

(I already have a user style manager, let me install it!)

Автор
Ahmed Blacklist
Щоденних встановлень
0
Всього встановлень
12
Рейтинги
0 0 0
Версія
2024-07-26
Створено
22.12.2024
Оновлено
22.12.2024
Size
1,3 кБ
Ліцензія
Н/Д
Відноситься до

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