Advertisement
Nolifeq

`LOGOUT jak koniec wyczerpa

Sep 15th, 2021
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. // ==UserScript==
  2. // @name `LOGOUT jak koniec wyczerpa
  3. // @version 1.0
  4. // @author Kasinel
  5. // @match *://*.margonem.pl/
  6. // @exclude https://www.margonem.pl/
  7. // ==/UserScript==
  8.  
  9. var tryb = 1; // on/off
  10. var nick = ["twuj nick"];// nick postaci
  11. var wyczerp = 0; // ile ma byc wyczerpa zeby lognal
  12.  
  13. LOGOUT = function(){
  14. if( (tryb == 1) && (nick == hero.nick) && (hero.ttl <= wyczerp) ){
  15. window.location.href = "https://www.margonem.pl/";
  16. }
  17. }
  18.  
  19. const _parseInput = parseInput;
  20. parseInput = (a, b, c) => {
  21. LOGOUT()
  22. _parseInput(a,b,c)
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement