Advertisement
Guest User

Untitled

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