Bloxd.io Performance Booster

Reduce lag and cap FPS in Bloxd.io (No maximum cap depending on your PC)

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Bloxd.io Performance Booster
// @namespace    https://bloxd.io/
// @version      1.0
// @description  Reduce lag and cap FPS in Bloxd.io (No maximum cap depending on your PC)
// @author       iTzPenzAr
// @match        *://bloxd.io/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

// Define performance settings
const config = {
shadows: false, // Disable shadows
particles: false, // Remove particles
postProcessing: false, // Disable post-processing effects
fpsCap: 15000000 // Set FPS cap (can be adjusted as needed)
};

// Save settings to local storage
localStorage.setItem('shadows', JSON.stringify(config.shadows));
localStorage.setItem('particles', JSON.stringify(config.particles));
localStorage.setItem('postProcessing', JSON.stringify(config.postProcessing));
localStorage.setItem('fpsCap', JSON.stringify(config.fpsCap));

// Reload the page to apply the settings
    window.location.reload();
})();