Greasy Fork

Greasy Fork is available in English.

MOOMOO.IO Toggle rainbowhats!!! (BETA)

Looks SUPER COOL!!!!!

当前为 2020-06-08 提交的版本,查看 最新版本

// ==UserScript==
// @name         MOOMOO.IO Toggle rainbowhats!!! (BETA)
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Looks SUPER COOL!!!!!
// @author       Cody Webb
// @match                 *://moomoo.io/*
// @match                 *://sandbox.moomoo.io/*
// @match                 *://dev.moomoo.io/*
// @grant        none
// ==/UserScript==


alert('Hellu');
document.title = "MooHat Switcher";
document.getElementById("gameName").innerHTML = "MooHat </br> Switcher";
let toggleKey = 1
const waitTime = 350
const hatList = {
    0: 0,
    1: 51,
    2: 52,
    3: 29,
    4: 30,
    5: 36,
    6: 37,
    7: 38,
    8: 44,
    9: 35,
    10: 42,
    11: 43,
    12: 49
};

const checkT = () => {
    while (toggleKey === 0) {
        document.AddEventListener('Keypress', function(e){
            if (e.keycode === 84 && document.activeElement.id.toLowerCase() !== 'chatbox'){
                if (toggleKey === 0){
                    toggleKey = 1;
                } else if (toggleKey === 1){
                    toggleKey = 0;
                    storeEquip(0);
                } else {
                    alert('An ERROR occurred with the toogle key:</br>    please report this issue to the greayfork forum. </br> -Thank you,  Cody Webb');
                }
            }
        });
    }
};

const randomHat = () => {
    if (toggleKey === 1) {
        storeEquip(hatList.Math.floor(Math.random() * 13));
    }
};

(function() {
    checkT();
    window.setTimeout(randomHat, waitTime);
})();