Minefun Sky Text Flash

Sky text flashing colors for Minefun

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Minefun Sky Text Flash
// @namespace    https://greasyfork.org
// @version      1.1
// @description  Sky text flashing colors for Minefun
// @match        *://*minefun*/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    // ===== SKY TEXT =====
    const skyText = document.createElement("div");
    skyText.innerText = "☁ BẦU TRỜI GALAXY ☁";
    document.body.appendChild(skyText);

    Object.assign(skyText.style, {
        position: "fixed",
        top: "20px",
        left: "50%",
        transform: "translateX(-50%)",
        fontSize: "22px",
        fontWeight: "bold",
        zIndex: "9999",
        pointerEvents: "none",
        color: "#00ffcc",
        textShadow: "0 0 10px black",
        transition: "0.3s"
    });

    // ===== BUTTON =====
    const btn = document.createElement("div");
    btn.innerText = "Sky OFF";
    document.body.appendChild(btn);

    Object.assign(btn.style, {
        position: "fixed",
        top: "100px",
        right: "20px",
        zIndex: "10000",
        padding: "8px 12px",
        background: "#111",
        color: "#fff",
        border: "1px solid #444",
        cursor: "pointer",
        userSelect: "none"
    });

    let enabled = false;

    const colors = ["#00ffff", "#ff0033", "#cc00ff", "#ffcc00"];
    let i = 0;
    let interval = null;

    btn.onclick = () => {
        enabled = !enabled;

        if (enabled) {
            btn.innerText = "Sky ON";

            interval = setInterval(() => {
                skyText.style.color = colors[i % colors.length];
                skyText.style.textShadow = `0 0 15px ${colors[i % colors.length]}`;
                i++;
            }, 300);

        } else {
            btn.innerText = "Sky OFF";
            clearInterval(interval);
            skyText.style.color = "#00ffcc";
            skyText.style.textShadow = "0 0 10px black";
        }
    };

    // ===== DRAG BUTTON =====
    let drag = false, ox, oy;

    btn.addEventListener("mousedown", (e) => {
        drag = true;
        ox = e.clientX - btn.offsetLeft;
        oy = e.clientY - btn.offsetTop;
    });

    document.addEventListener("mousemove", (e) => {
        if (!drag) return;
        btn.style.left = (e.clientX - ox) + "px";
        btn.style.top = (e.clientY - oy) + "px";
        btn.style.right = "auto";
    });

    document.addEventListener("mouseup", () => drag = false);

})();