Flarex gold nick blinker(customizable)

gold nick name flicker for flarex

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Flarex gold nick blinker(customizable)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  gold nick name flicker for flarex
// @author       Vaqu
// @match        https://flarex.fun/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let isGoldEnabled = true;
    let blinkInterval = 59; // Blink interval in milliseconds

    function toggleGoldNickname() {
        isGoldEnabled = !isGoldEnabled;
        let goldCheckbox = document.querySelector('#goldNick.save');
        /* copy and paste goldCheckBox, change "gold" to the color of your nick, right click on the nickname checkbox, copy the id, and replace '#goldNick.save' with the id.*/
        if (goldCheckbox) {
            goldCheckbox.checked = isGoldEnabled;
            goldCheckbox.dispatchEvent(new Event('change'));
        }/* copy and paste the text above ^^ and change every "goldCheckBox" with your new id*/
    }

    let blinker = setInterval(toggleGoldNickname, blinkInterval);
/* add the variable to the "setInterval" text*/
    // adding a stop button
    let stopButton = document.createElement('button');
    stopButton.innerText = 'Stop Blinking';
    stopButton.style.position = 'fixed';
    stopButton.style.top = '10px';
    stopButton.style.right = '10px';
    stopButton.style.zIndex = '9999';
    stopButton.onclick = function() {
        clearGoldNick()
    };
    function clearGoldNick() {
    clearInterval(blinker);
        blinker = false;
    }
    document.body.appendChild(stopButton);
    // adding a start button
        let startButton = document.createElement('button');
    startButton.innerText = 'Start Blinking';
    startButton.style.position = 'fixed';
    startButton.style.top = '50px';
    startButton.style.right = '10px';
    startButton.style.zIndex = '9999';
    startButton.onclick = function() {
         var blinker = setInterval(toggleGoldNickname, blinkInterval);
    };
    document.body.appendChild(stopButton);
    console.log("Script started ;D")
    if(blinker = false) {
        toggle.startButton();
    }

})();