Greasy Fork is available in English.

MooMacro v1.2

macros in line 13

Skript installieren?
Vom Ersteller vorgeschlagenes Skript

Ihnen könnte auch Bow Insta Helper gefallen.

Skript installieren
// ==UserScript==
// @name         MooMacro v1.2
// @namespace    mohmoh plaier
// @version      v1.2
// @description  macros in line 13
// @author       totally not twilightmoon
// @match        *://*.moomoo.io/*
// @icon         https://c8.alamy.com/comp/P9DECX/gold-alphabet-letter-gg-g-g-logo-combination-design-suitable-for-a-company-or-business-P9DECX.jpg
// @license      MIT
// @grant        none
// ==/UserScript==

// Macros:
// g = soldier
// left click = bull
// right click = tank
// l = turret gear
// u = plague mask
// o = booster hat
// p = winter hat
// k = flipper hat

const macros = {
    'g': 'Soldier',
    'm': 'Bull',
    'right click': 'Tank',
    'l': 'Turret Gear',
    'u': 'Plague Mask',
    'o': 'Booster Hat',
    'p': 'Winter Hat',
    'k': 'Flipper Hat'
};

function hat(id){
    storeBuy(id)
    storeEquip(id)
    // alert ("Equipped " + id)
}
// Hat Macros

// Event listener for key 'g'
document.addEventListener('keydown', function(event) {
    if (event.key === 'g') {
        hat(6);
    }
});

// Event listener for left click
document.addEventListener('keydown', function(event) {
    if (event.key === 'm') {
        hat(7);
    }
});

// Event listener for right click
document.addEventListener('contextmenu', function(event) {
    event.preventDefault(); // Prevent the default context menu
    hat(40);
});

// Event listener for key 'l'
document.addEventListener('keydown', function(event) {
    if (event.key === 'l') {
        hat(53);
    }
});

// Event listener for key 'u'
document.addEventListener('keydown', function(event) {
    if (event.key === 'u') {
        hat(21);
    }
});

// Event listener for key 'o'
document.addEventListener('keydown', function(event) {
    if (event.key === 'o') {
        hat(12);
    }
});

// Event listener for key 'p'
document.addEventListener('keydown', function(event) {
    if (event.key === 'p') {
        hat(15);
    }
});

// Event listener for key 'k'
document.addEventListener('keydown', function(event) {
    if (event.key === 'k') {
        hat(31);
    }
});
// Create a menu element to display the macro keys and actions
const menu = document.createElement('div');
menu.style.position = 'fixed';
menu.style.top = '10px';
menu.style.left = '10px';
menu.style.width = '200px'; // Make it 2x wider
menu.style.height = '220px'; // Make it square
menu.style.background = 'rgba(255, 255, 255, 0.7)';
menu.style.padding = '10px';
menu.style.fontSize = '20px'; // Increase the font size
menu.style.fontFamily = 'HammerSmith, sans-serif'; // Use the "HammerSmith" font

// Set the border-radius property to make the menu rounded with a 6px radius
menu.style.borderRadius = '6px';

// Populate the menu with the macro keys and actions
for (const key in macros) {
    const macroItem = document.createElement('p');
    macroItem.textContent = `${key} = ${macros[key]}`;
    menu.appendChild(macroItem);
}

document.body.appendChild(menu);