Spam kill

wow

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Spam kill
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  wow
// @author       LongName
// @match        https://agarpowers.xyz/
// @icon         https://i.imgur.com/hS3gXVD.gif
// @grant        none
// ==/UserScript==


       var LongNameScriptBtn = document.createElement("div");
       LongNameScriptBtn.innerHTML = '<div class="controlRow">LongName Script <input value="T" id="LongName ScriptID" oninput="toUpperCase()" class="controlBtn" role="button"></div>';
       controls.appendChild(LongNameScriptBtn);
       var portalKey = document.getElementById("portal");
       var antiRecKey = document.getElementById("antirecombine");
       var LongNameScriptInput = document.getElementById("LongName ScriptID");
        function portal() {
            var letterP = portalKey.innerText;
            var PortalkeyCode = letterP.charCodeAt(0);
            $("#canvas").trigger($.Event("keydown", { keyCode: PortalkeyCode })); // Portal KeyCode
            $("#canvas").trigger($.Event("keyup", { keyCode: PortalkeyCode })); // Portal KeyCode
        }
        function antiRec() {
            var letter2 = antiRecKey.innerText;
            var antimergekeyCode = letter2.charCodeAt(0);
            $("#canvas").trigger($.Event("keydown", { keyCode: antimergekeyCode })); // AntiRecombine KeyCode
            $("#canvas").trigger($.Event("keyup", { keyCode: antimergekeyCode })); // AntiRecombine KeyCode
        }

        var LongNameScript = parseInt(localStorage.getItem("LongName ScriptKeyCode")) || 84; // Attack-Two KeyCode (portal + antirec)
        portalKey.addEventListener("click", function(event) {
            portal();
        });
        window.addEventListener('keydown', function(event) {
            if (event.keyCode == LongNameScript) {
                portal();
                setTimeout(virus, 100);
                setTimeout(antiRec, 200);

            }
        });