Facebook
From Reliable Peafowl, 4 Years ago, written in Plain Text.
This paste is a reply to anty jak BEZ KEYLOGERA from ja - go back
Embed
Viewing differences between anty jak BEZ KEYLOGERA and Re: anty jak BEZ KEYLOGERA
\n// ==UserScript==
// @name         Anty lag + Zamykanie The Best
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Auto zamykanie
// @match        *://*/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function antyLag(){
        if($('#battletimer')[0].innerText == "Walka zakończona." && $('#battle')[0].style["display"] == "block"){
            _g('fight&a=quit');
            console.log("Zamknięto okno.");
        }
    }
    setInterval(function(){ antyLag(); }, 150);
})();