MooMoo greataxe+bow build

Swaps to food when right clicked, 'q' switches to great axe, 'shift' switches to bow

// ==UserScript==
// @name         MooMoo greataxe+bow build
// @namespace    http://tampermonkey.net/
// @version      1.02
// @description  Swaps to food when right clicked, 'q' switches to great axe, 'shift' switches to bow
// @author       meatman2tasty
// @match        http://moomoo.io/*
// @grant        none
// ==/UserScript==

$("#gameCanvas").mousedown(function(ev){
      if(ev.which == 3)
      {
        document.getElementById("actionBarIcon5").click();
        document.getElementById("actionBarIcon6").click();
      }
});

document.addEventListener("keydown", function(a) {
    if (a.keyCode == 16) {
 document.getElementById("actionBarIcon3").click();
    }
}, false);

document.addEventListener("keydown", function(a) {
    if (a.keyCode == 81) {
 document.getElementById("actionBarIcon1").click();
    }
}, false);


window.oncontextmenu = function () {
   return false;
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址