Skyline Client

FPS boosting client for Bloxd.io

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Skyline Client
// @namespace    http://tampermonkey.net/
// @version      2024-11-19
// @description  FPS boosting client for Bloxd.io
// @author       KINGZZPVP_YT
// @match        *://*/*
// @match        https://staging.bloxd.io
// @icon         https://i2-prod.mirror.co.uk/incoming/article22830648.ece/ALTERNATES/s1227b/0_Illuminated-Toronto-Skyline-Panorama-After-Sundown.jpg
// @grant        none
// ==/UserScript==

/* ============================
      SKYLINE PERFORMANCE OPTIONS
   ============================ */

const SKYLINE_SETTINGS = {
    removeParticles: true,
    removeShadows: true,
    removeTallGrass: true,
    removeClouds: true,
    removeSky: true,
    removeFog: true
};

/* ============================
      APPLY PERFORMANCE BOOSTS
   ============================ */

(function() {
    const style = document.createElement("style");
    let css = "";

    if (SKYLINE_SETTINGS.removeParticles) css += `
        .particle, [class*="particle"] {
            display: none !important;
        }
    `;

    if (SKYLINE_SETTINGS.removeShadows) css += `
        .shadow, [class*="shadow"] {
            display: none !important;
        }
        canvas {
            filter: none !important;
        }
    `;

    if (SKYLINE_SETTINGS.removeTallGrass) css += `
        .tall-grass, .grass, [class*="grass"] {
            display: none !important;
        }
    `;

    if (SKYLINE_SETTINGS.removeClouds) css += `
        .cloud, [class*="cloud"] {
            display: none !important;
        }
    `;

    if (SKYLINE_SETTINGS.removeSky) css += `
        .sky, [class*="sky"] {
            display: none !important;
        }
    `;

    if (SKYLINE_SETTINGS.removeFog) css += `
        .fog, [class*="fog"] {
            display: none !important;
        }
    `;

    style.textContent = css;
    document.head.appendChild(style);
})();

/* ============================
      YOUR ORIGINAL SKYLINE CODE
   ============================ */

(function() {
    'use strict';

    setInterval(function() {
        var elementsToHide = document.querySelectorAll('#gameadsbanner, .AdContainer, #cmpbox, .CookieConsent, [id*="fc-"], [class*="fc-"]');

        elementsToHide.forEach(function(element) {
            if (element) {
                element.style.opacity = '0';
                element.style.width = '0';
                element.style.height = '0';
            }
        });
    }, 100);
})();

(function() {
    'use strict';

    setInterval(function() {
        const hotbarslots = document.querySelectorAll(".item");
        const selectedslot = document.querySelectorAll(".SelectedItem");
        if (hotbarslots) {
            hotbarslots.forEach(function(hotbar) {
                hotbar.style.borderRadius = "0px";
                hotbar.style.borderColor = "#000000";
                hotbar.style.backgroundColor = "#000000";
                hotbar.style.boxShadow = "inset -2px -2px 10px 0px rgb(128, 128, 128), inset 0.3px 0.3px 5px 0px rgb(255, 255, 255)";
                hotbar.style.outline = "transparent";
            });
        }
        if (selectedslot) {
            selectedslot.forEach(function(slot) {
                slot.style.backgroundColor = "#000000";
                slot.style.boxShadow = "inset -2px -2px 10px 0px rgb(0, 0, 255), inset 0.3px 0.3px 5px 0px rgb(128, 128, 128)";
                slot.style.borderColor = "#000000";
                slot.style.outline = "transparent";
            });
        }
    }, 1);
})();

setInterval(function() {
    'use strict';
    document.title = "𝓼𝓴𝔂𝓵𝓲𝓷𝓮";
    const maintext = document.querySelector('.Title.FullyFancyText');
    if (maintext) {
        maintext.style.textShadow = "8px 3px 3px #000000";
        maintext.style.webkitTextStroke = "none";
        maintext.textContent = "𝓼𝓴𝔂𝓵𝓲𝓷𝓮";
    }

    const background = document.querySelector(".HomeBackground");
    if (background) {
        background.style.backgroundImage = 'url(https://i2-prod.mirror.co.uk/incoming/article22830648.ece/ALTERNATES/s1227b/0_Illuminated-Toronto-Skyline-Panorama-After-Sundown.jpg)';
    }

    const modifyElements = () => {
        ['LogoContainer','cube'].forEach(className => {
            document.querySelectorAll('.' + className).forEach(el => el.remove());
        });
    };

    document.addEventListener('DOMContentLoaded', modifyElements);
    setInterval(modifyElements, 1000);

    setInterval(function() {
        const crosshair = document.querySelector(".CrossHair");
        if (crosshair) {
            crosshair.textContent = "";
            crosshair.style.backgroundImage = "url(https://www.clipartbest.com/cliparts/dc8/pdE/dc8pdEMBi.png)";
            crosshair.style.backgroundRepeat = "no-repeat";
            crosshair.style.backgroundSize = "contain";
            crosshair.style.width = "19px";
            crosshair.style.height = "19px";
        }
    }, 1000);

    setInterval(function() {
        var elementToDelete = document.querySelector('.ForceRotateBackground.FullyFancyText');
        if (elementToDelete) {
            elementToDelete.remove();
        }
    }, 100);
})();