hack dino

Dino game Hack

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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

Autor
Ahmed Blacklist
Installationen heute
0
Installationen gesamt
14
Bewertungen
0 0 0
Version
2024-07-26
Erstellt am
22.12.2024
Letzte Aktualisierung
22.12.2024
Größe
1,28 KB
Lizenz
n/a
Wird angewandt auf

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