Visual Bricks Changer

Shows Fake polytoria Bricks/Studs to troll

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

Advertisement:

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

Advertisement:

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Visual Bricks Changer
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Shows Fake polytoria Bricks/Studs to troll
// @author       Absayno/Xavior S/Voo
// @match        https://polytoria.com/*
// @license MIT
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// @UpdateCredits v1.0 Xavior S] v1.1 absayno]Voo]
// ==/UserScript==
console.log('|VBC Working 1.2|');
(function() {
    'use strict';

    const FAKE_BRICKS = "1,000,000"; // change this to whatever you want
    const FAKE_STUDS = "1,000,000";  // change this to whatever you want

    function updateCurrencies() {
        // Bricks
        const brickEl = document.querySelector(".brickBalanceCount");
        if (brickEl) {
            brickEl.textContent = FAKE_BRICKS;
        }

        // Studs
        const studsEl = document.querySelector(".studsBalanceCount");
        if (studsEl) {
            studsEl.textContent = FAKE_STUDS;
        }
    }

    // By absayno/voo/Xavior S
    updateCurrencies();
    setInterval(updateCurrencies, 1000);
})();