Greasy Fork is available in English.

Anty lag + Zamykanie The Best

try to take over the world!

// ==UserScript==
// @name         Anty lag + Zamykanie The Best
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author
// @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);
})();