Greasy Fork is available in English.
Use this mod to switch hats with the press of a key!
// ==UserScript==// @name MOOMOO.io BASIC HAT MACRO// @namespace http://tampermonkey.net/// @version 0.9// @description Use this mod to switch hats with the press of a key!// @author Cody Webb// @match *://moomoo.io/*// @match *://sandbox.moomoo.io/*// @match *://dev.moomoo.io/*// @grant none// ==/UserScript==(function() {//the actuall equip scriptif (document.activeElement.id !== 'chatBox'){document.addEventListener('keydown', function(e) {switch (e.keyCode) {case 16: storeEquip(0); break; // Shiftcase 82: storeEquip(7); break; // Rcase 90: storeEquip(40); break; // Zcase 71: storeEquip(6); break; // Gcase 66: storeEquip(12); break; // Bcase 89: storeEquip(58); break; // Ycase 78: storeEquip(15); break; // Ncase 74: storeEquip(22); break; // Jcase 84: storeEquip(53); break; // Tcase 88: storeEquip(16); break; // Kcase 72: storeEquip(26); break; // Hcase 85: storeEquip(20); break; // Ucase 73: storeEquip(56); break; // Icase 79: storeEquip(55); break; // Ocase 77: storeEquip(11); break; // M}});}})();