Auto Redirect Script

Auto redirection script for use with Auto CAPTCHA Solver extension on Nitro Type

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Auto Redirect Script
// @namespace    http://tampermonkey.net/
// @version      2.5
// @description  Auto redirection script for use with Auto CAPTCHA Solver extension on Nitro Type
// @author       Aratox
// @match        https://www.nitrotype.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    let captchaActive = false;
    let racePageStayDuration = 120000;
    let racePageTimer;

    function checkCaptchaMessage() {
        const captchaMessage = document.body.innerText.includes('ERR: CAPTCHA IS NOT RESOLVED');
        if (captchaMessage && !captchaActive) {
            captchaActive = true;
            handleCaptcha();
        }
    }

    function handleCaptcha() {
        console.log("CAPTCHA detected. Redirecting to race page...");
        window.location.href = "https://www.nitrotype.com/race";
    }

    function checkIfCaptchaSolved() {
        const validatedMessage = document.querySelector('.tc-i');
        if (validatedMessage && validatedMessage.innerText.includes("Validated! Play on.")) {
            console.log("CAPTCHA validated! Redirecting to garage...");
            window.location.href = "https://www.nitrotype.com/garage";
        } else {
            setTimeout(checkIfCaptchaSolved, 1000);
        }
    }

    function autoClickContinueButton() {
        const continueButton = document.querySelector('button.btn.btn--primary.btn--fw');
        if (continueButton) {
            console.log("Continue button found. Clicking it...");
            continueButton.click();

            setTimeout(() => {
                console.log("Redirecting to garage after clicking continue...");
                window.location.href = "https://www.nitrotype.com/garage";
            }, 1000);
        } else {
            setTimeout(autoClickContinueButton, 1000);
        }
    }

    function redirectToGarageAfterDelay() {
        console.log("Staying on race page for 2 minutes. Redirecting to garage...");
        window.location.href = "https://www.nitrotype.com/garage";
    }

    function checkIfRacePage() {
        if (window.location.pathname === "/race") {
            console.log("On race page. Checking if CAPTCHA is solved to redirect to garage...");
            checkIfCaptchaSolved();
            autoClickContinueButton();

            racePageTimer = setTimeout(redirectToGarageAfterDelay, racePageStayDuration);
        } else {
            clearTimeout(racePageTimer);
        }
    }

    setInterval(checkCaptchaMessage, 1000);

    window.addEventListener('load', checkIfRacePage);

})();