您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
RGB Idle Infinite Money
// ==UserScript== // @name RGB Idle Hacks // @namespace http://tampermonkey.net/ // @version 1 // @description RGB Idle Infinite Money // @author JUJUJUJ // @match https://ikerstreamer.github.io/RGB-Idle/* // @grant none // @icon https://image.flaticon.com/icons/svg/99/99188.svg // @license MIT // @compatible chrome // @compatible opera // @compatible safari // ==/UserScript== setInterval( function () { let n = 999999999999999999999999999999999999999999999999 let m = 999999999999999999999999999999999999999999999999 let j = n*m let b = j*j let pov = b*b setInterval( function () { var getR = Math.floor(player.money.red) var getG = Math.floor(player.money.green) var getB = Math.floor(player.money.blue) var getS = Math.floor(player.spectrum.val) if (getR < 999999999999999999999999999999999999999999999) { player.money.red = pov; } if (getG < 999999999999999999999999999999999999999999999) { player.money.green = pov; } if (getB < 999999999999999999999999999999999999999999999) { player.money.blue = pov; } if (getS < 999999999999999999999999999999999999999999999) { player.spectrum.val = pov; } }) }, 50);