Moomoo.io Custom Visuals

Custom visuals created by chat gpt lmaooooooo

目前為 2023-09-16 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Moomoo.io Custom Visuals
// @namespace    https://www.example.com
// @version      1.2
// @description  Custom visuals created by chat gpt lmaooooooo
// @author       NuK3r_101
// @match        *://*.moomoo.io/*
// @grant        GM_addStyle
// ==/UserScript==

(function() {
    'use strict';

    // Modificar colores de los materiales
    GM_addStyle(`
        #woodDisplay, #stoneDisplay, #foodDisplay {
            color: #9cb1e8 !important;
        }
    `);

    // Modificar colores del leaderboard
    GM_addStyle(`
        #leaderboard {
            border: 4px solid #9cb1e8;
            border-radius: 5px;
            color: #9cb1e8;
        }

        .leaderboard-entry {
            background-color: #b3c1ff;
        }

        .leaderboard-entry-name {
            color: #9cb1e8 !important;
        }
    `);

    // Agregar imagen de fondo en el lobby
    GM_addStyle(`
        .app {
            background-image: url('https://cdn.discordapp.com/attachments/1111932901500670005/1126470856227434556/24_sin_titulo_20230706131056.png') !important;
            background-size: cover !important;
        }
    `);

    // Agregar imagen de fondo en el mapa
    GM_addStyle(`
        #mapDisplay {
            background-image: url('https://cdn.discordapp.com/attachments/1111932901500670005/1126124065896276068/ezgif-3-c147a2a660.gif');
            background-size: cover;
            background-position: center;
            background-repeat: repeat;
            border: 4px solid #9cb1e8;
            border-radius: 5px;
        }
    `);

    // Establecer un cursor personalizado
    GM_addStyle(`
        body {
            cursor: url('URL_DEL_CURSOR'), auto !important; // Reemplaza 'URL_DEL_CURSOR' con la URL de tu cursor personalizado
        }
    `);

    // Resto del código...

})();