您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
ah yes the ms reducer to make arras.io les laggy
// ==UserScript== // @name MS Reducer for arras.io // @namespace http://tampermonkey.net/ // @version 0.1 // @description ah yes the ms reducer to make arras.io les laggy // @author Leo // @match https://arras.io/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Function to reduce the update frequency of certain game functions function reduceMS() { // Example: Reduce the frequency of game rendering updates const originalRender = window.gameRenderFunction; if (originalRender) { window.lastRenderTime = 0; window.gameRenderFunction = function() { const now = Date.now(); if (now - window.lastRenderTime >= 100) { // Adjust the delay (100 ms) as needed window.lastRenderTime = now; originalRender.apply(this, arguments); } }; } // Example: Reduce the frequency of game update logic const originalUpdate = window.gameUpdateFunction; if (originalUpdate) { window.lastUpdateTime = 0; window.gameUpdateFunction = function() { const now = Date.now(); if (now - window.lastUpdateTime >= 100) { // Adjust the delay (100 ms) as needed window.lastUpdateTime = now; originalUpdate.apply(this, arguments); } }; } console.log('MS reduction optimizations applied.'); } // Apply the optimizations once the game has fully loaded window.addEventListener('load', reduceMS); })();