MooMoo right click auto feed

Uses food when right clicked

当前为 2017-06-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name MooMoo right click auto feed
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.09
  5. // @description Uses food when right clicked
  6. // @author meatman2tasty
  7. // @match http://moomoo.io/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $("#gameCanvas").mousedown(function(ev){
  12. if(ev.which == 3)
  13. {
  14. document.getElementById("actionBarItem9").click();
  15. }
  16. });
  17.  
  18. document.addEventListener("keydown", function(a) {
  19. if (a.keyCode == 16) {
  20. document.getElementById("actionBarItem9").click();
  21. }
  22. }, false);
  23.  
  24. document.addEventListener("keydown", function(a) {
  25. if (a.keyCode == 16) {
  26. document.getElementById("actionBarItem10").click();
  27. }
  28. }, false);
  29.  
  30. $("#gameCanvas").mousedown(function(ev){
  31. if(ev.which == 3)
  32. {
  33. document.getElementById("actionBarItem10").click();
  34. }
  35. });
  36.  
  37.  
  38. window.oncontextmenu = function () {
  39. return false;
  40. };