Greasy Fork is available in English.
Automatically limit FPS to a range between 900-1500 in EvoWorld
// ==UserScript==
// @name siuu
// @namespace not script
// @version 1.0.0
// @description Automatically limit FPS to a range between 900-1500 in EvoWorld
// @author Vernice
// @match https://evoworld.io/*
// @match https://flyordie.io/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=evoworld.io
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// ⚠️ USE AT YOUR OWN RISK - Risk of ban (if applicable)
if (window.game) {
// Create a loop to enforce FPS limits
setInterval(() => {
const desiredFps = Math.floor(Math.random() * (1500 - 900 + 1)) + 900;
window.game.fpsTimes.length = desiredFps;
console.log(`FPS set to: ${desiredFps}`);
}, 1000); // Update every second
console.log('FPS Limiter activated.');
} else {
console.error('Game object not found. Ensure you are on the correct page.');
}
})();