NitroMath Bot

Automate interactions on NitroMath, this bot does not allow accuracy settings, and will play for hours on end WITH a captcha solver added. Also will run in background if need. --NOTE-- This script will run forever, without stop. If you would like session breaks, please install this version of the script: https://gf.qytechs.cn/en/scripts/480892-nitromath-bot-with-session-break

目前为 2023-11-27 提交的版本。查看 最新版本

// ==UserScript==
// @name         NitroMath Bot
// @namespace    https://singdev.wixsite.com/sing-developments
// @version      0.2
// @description  Automate interactions on NitroMath, this bot does not allow accuracy settings, and will play for hours on end WITH a captcha solver added. Also will run in background if need. --NOTE-- This script will run forever, without stop. If you would like session breaks, please install this version of the script: https://gf.qytechs.cn/en/scripts/480892-nitromath-bot-with-session-break
// @author       Sing Developments
// @match        https://www.nitromath.com/play
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function getRandomNumber(min, max) {
        return Math.floor(Math.random() * (max - min + 1)) + min;
    }

    function moveMouseRandomly() {
        const body = document.body;
        const offsetX = getRandomNumber(0, body.offsetWidth);
        const offsetY = getRandomNumber(0, body.offsetHeight);

        const event = new MouseEvent('mousemove', {
            bubbles: true,
            clientX: offsetX,
            clientY: offsetY
        });

        body.dispatchEvent(event);
    }

    function reloadPage() {
        location.reload();
    }

    setInterval(moveMouseRandomly, 1000);

    setInterval(reloadPage, 100000);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址