Bloxd.io Performance Booster

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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