Greasy Fork is available in English.

siuu

Automatically limit FPS to a range between 900-1500 in EvoWorld

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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.');
    }
})();