Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Auto F zamykanie
  3. // @namespace Auto F
  4. // @version 1
  5. // @description try to take over the world!
  6. // @author
  7. // @match *://*/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. function antyLag(){
  15. if($('#battletimer')[0].innerText == "Walka zakończona." && $('#battle')[0].style["display"] == "block"){
  16. _g('fight&a=quit');
  17. console.log("Zamknięto okno.");
  18. }
  19. }
  20. setInterval(function(){ antyLag(); }, 150);
  21. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement