NitroMath Bot

When first using, a popup will occur, please click the "Always Allow" button to enable the bot. This bot does not allow accuracy settings and will play for hours on end without stopping. Also, will run in the background if needed. --NOTE-- If you get banned, we are not responsible. It should be undetectable. Price: Monthly: $7 Yearly: $60. To buy, please go to our website: https://singdev.wixsite.com/sing-developments --or-- contact me through email: [email protected]

As of 2023-11-27. See the latest version.

// ==UserScript==
// @name         NitroMath Bot
// @namespace    https://singdev.wixsite.com/sing-developments
// @version      0.8
// @description  When first using, a popup will occur, please click the "Always Allow" button to enable the bot. This bot does not allow accuracy settings and will play for hours on end without stopping. Also, will run in the background if needed. --NOTE-- If you get banned, we are not responsible. It should be undetectable. Price: Monthly: $7 Yearly: $60. To buy, please go to our website: https://singdev.wixsite.com/sing-developments --or-- contact me through email: [email protected] 
// @author       Sing Developments
// @match        https://www.nitromath.com/play
// @grant        GM_xmlhttpRequest
// ==/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();
  }

  let userId = localStorage.getItem('nitroMathUserId');

  if (!userId || !isValidUserId(userId)) {
    userId = prompt('Enter your user ID:');
    localStorage.setItem('nitroMathUserId', userId);
  }

  const pantryUrl = 'https://singdevnmbot.glitch.me/nmusers.html';

  GM_xmlhttpRequest({
    method: 'GET',
    url: pantryUrl,
    headers: {
      'User-Agent': 'Mozilla/5.0 (compatible; Greasemonkey; script)',
      'Accept': 'application/json',
    },
    onload: function (response) {
      if (response.status === 200) {
        const data = JSON.parse(response.responseText);
        if (data.specialUsers.includes(userId)) {
          // Display the allowed users
          console.log('Allowed Users:', data.specialUsers);

          setInterval(moveMouseRandomly, 1000);
          setInterval(reloadPage, 100000);
        } else {
          let correctUserId;
          do {
            correctUserId = prompt('Error: Invalid user ID. Please enter the correct one:');
          } while (!isValidUserId(correctUserId));

          localStorage.setItem('nitroMathUserId', correctUserId);
          location.reload();
        }
      } else {
        console.error('Error fetching user list. Server responded with status:', response.status);
        alert('Error fetching user list. Please try again later.');
      }
    },
    onerror: function (error) {
      console.error('Error fetching user list:', error);
      alert('Error fetching user list. Please try again later.');
    },
  });

  function isValidUserId(id) {
    return id !== null && id.trim() !== '';
  }
})();