Spam kill

wow

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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);

            }
        });