// ==UserScript== // @name Best Agar.io Scripte | macro keys | + popsplit!!!!!! (enjoy) // @namespace http://tampermonkey.net/ // @version 4.1 // @description W = Macro Feed | D = Double-Split | E = 16-Split | R = Popsplit | Z = Triple-trick macro // @author N1ceClan // @match http://n1ceclangame.esy.es/www/ // @run-at document-end // @grant none // @downloadURL https://update.greasyfork.icu/scripts/29653/Best%20Agario%20Scripte%20%7C%20macro%20keys%20%7C%20%2B%20popsplit%21%21%21%21%21%21%20%28enjoy%29.user.js // @updateURL https://update.greasyfork.icu/scripts/29653/Best%20Agario%20Scripte%20%7C%20macro%20keys%20%7C%20%2B%20popsplit%21%21%21%21%21%21%20%28enjoy%29.meta.js // ==/UserScript== window.addEventListener('keydown', keydown); window.addEventListener('keyup', keyup); var Feed = false; var Dingus = false; var imlost = 25; document.getElementById("instructions").innerHTML += "
Press Z to Triplesplit
"; document.getElementById("instructions").innerHTML += "
Press D to Doublesplit
"; document.getElementById("instructions").innerHTML += "
Press R to Popsplit
"; document.getElementById("instructions").innerHTML += "
Press and hold W for macro feed
"; load(); function load() { if (document.getElementById("overlays").style.display!="none") { document.getElementById("settings").style.display = "block"; if (document.getElementById('showMass').checked) {document.getElementById('showMass').click();} document.getElementById('showMass').click(); if (document.getElementById('darkTheme').checked) {document.getElementById('darkTheme').click();} document.getElementById('darkTheme').click(); // Don't switch the code becauce the script will not work ! } else { setTimeout(load, 100); } } function keydown(event) { if (event.keyCode == 87) { Feed = true; setTimeout(fukherriteindapussie, imlost); } // Triplesplit if (event.keyCode == 90) { ilikedick(); setTimeout(ilikedick, imlost); setTimeout(ilikedick, imlost*2); } // Doublesplit if (event.keyCode == 68) { ilikedick(); setTimeout(ilikedick, imlost); } // PopSplit if (event.keyCode == 82) { ilikedick(); setTimeout(ilikedick, imlost*8.2142354224); } } // When Player Lets Go Of W, It Stops Feeding function keyup(event) { if (event.keyCode == 87) { Feed = false; } if (event.keyCode == 79) { Dingus = false; } } // Feed Macro With W function fukherriteindapussie() { if (Feed) { window.onkeydown({keyCode: 87}); window.onkeyup({keyCode: 87}); setTimeout(fukherriteindapussie, imlost); } } function ilikedick() { $("body").trigger($.Event("keydown", { keyCode: 32})); $("body").trigger($.Event("keyup", { keyCode: 32})); } //Please don't switch the code { u know why ( ?° ?? ?°) }