🏠 Home 

MaSt Play MODS

MODS


Install this script?
  1. // ==UserScript==
  2. // @name MaSt Play MODS
  3. // @namespace MaSt Play MODS
  4. // @version 0.1
  5. // @description MODS
  6. // @author MaSt
  7. // @match http://abs0rb.me/*
  8. // @match http://agar.io/*
  9. // @match http://agarabi.com/*
  10. // @match http://agarly.com/*
  11. // @match http://en.agar.bio/*
  12. // @match http://agar.pro/*
  13. // @match http://agar.biz/*
  14. // @match http://gota.io/*
  15. // @grant none
  16. // ==/UserScript==
  17. window.onload = function() {
  18. var ctx = document.getElementById("canvas").getContext("2d");
  19. $("h2").replaceWith('<h2>MaSt Agar.io</h2>');
  20. $("title").replaceWith('<title>MaSt Agar.io</title>');
  21. $("h1").replaceWith('<h1>MaSt Agar.io</h1>');
  22. option_show_mass = true;
  23. option_skip_stats = true;
  24. };
  25. var SplitInterval;
  26. var MacroInterval;
  27. var SplitDebounce = false;
  28. var MacroDebounce = false;
  29. $(document).on('keydown', function(input) {
  30. console.log("got keydown");
  31. if (input.keyCode == 16) {
  32. if (SplitDebounce) {
  33. return;
  34. }
  35. SplitDebounce = true;
  36. SplitInterval = setInterval(function() {
  37. $("body").trigger($.Event("keydown", {
  38. keyCode: 32
  39. }));
  40. $("body").trigger($.Event("keyup", {
  41. keyCode: 32
  42. }));
  43. }, 0);
  44. } else if (input.keyCode == 81) {
  45. if (MacroDebounce) {
  46. return;
  47. }
  48. MacroDebounce = true;
  49. MacroInterval = setInterval(function() {
  50. $("body").trigger($.Event("keydown", {
  51. keyCode: 87
  52. }));
  53. $("body").trigger($.Event("keyup", {
  54. keyCode: 87
  55. }));
  56. }, 0);
  57. }
  58. });
  59. $(document).on('keyup', function(input) {
  60. if (input.keyCode == 16) {
  61. SplitDebounce = false;
  62. clearInterval(SplitInterval);
  63. return;
  64. } else if (input.keyCode == 81) {
  65. MacroDebounce = false;
  66. clearInterval(MacroInterval);
  67. return;
  68. }
  69. });
  70. $( "#canvas" ).after( "<div style='background-color: #000000; -moz-opacity: 0.4; -khtml-opacity: 0.4; opacity: 0.4; filter: alpha(opacity=40); zoom: 1; width: 615px; top: 30px; left: 30px; display: block; position: absolute; text-align: center; font-size: 15px; color: #ffffff; padding: 5px; font-family: Ubuntu;'> <div style='color:#ffffff; display: inline; -moz-opacity:1; -khtml-opacity: 1; opacity:1; filter:alpha(opacity=100); padding: 10px;'><a href='//www.youtube.com/channel/UCDus6QxlKthkN_n0oaEOsOg' target='_blank'>PLAY - Agar.io YT</a></div> <div style='color:#ffffff; display: inline; -moz-opacity:1; -khtml-opacity: 1; opacity:1; filter:alpha(opacity=100); padding: 10px;'><br>Macro Feed: <a>Q</a> </div> <div style='color:#ffffff; display: inline; -moz-opacity:1; -khtml-opacity: 1; opacity:1; filter:alpha(opacity=100); padding: 10px;'><br>Full split: <a>Shift</a> </div> <div style='color:#ffffff; display: inline; -moz-opacity:1; -khtml-opacity: 1; opacity:1; filter:alpha(opacity=100); padding: 10px;'><br>La team: <a href='//pastebin.com/raw/nmcs1XEw' target='_blank'>Lien des chaines</a> </div>" );
  71. document.getElementById("gamemode").style.backgroundColor = "black";
  72. document.getElementById("gamemode").style.color = "white";
  73. document.getElementById("region").style.backgroundColor = "black";
  74. document.getElementById("region").style.color = "white";
  75. document.getElementById("quality").style.backgroundColor = "black";
  76. document.getElementById("quality").style.color = "white";
  77. document.getElementById("statsGraph").style.bottom = "";
  78. document.getElementById("statsGraph").style.top = "40px";
  79. document.getElementById("stats").getElementsByTagName("hr")[0].style.top = "270px";
  80. document.getElementById("socialStats").style.bottom = "";
  81. document.getElementById("socialStats").style.top = "290px";
  82. document.getElementById("statsContinue").style.bottom = "20px";
  83. document.getElementById("statsContinue").style.top = "344px";
  84. document.getElementById("stats").getElementsByTagName("hr")[1].style.top = "40px";
  85. document.getElementById("stats").style.height = "398px";
  86. document.getElementById("stats").style.padding = "0 0 0";
  87. document.getElementsByClassName("agario-exp-bar progress")[0].style.backgroundColor = "black";