Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name `LOGOUT jak koniec wyczerpa
- // @version 1.0
- // @author Kasinel
- // @match *://*.margonem.pl/
- // @exclude https://www.margonem.pl/
- // ==/UserScript==
- var tryb = 1; // on/off
- var nick = ["twuj nick"];// nick postaci
- var wyczerp = 0; // ile ma byc wyczerpa zeby lognal
- LOGOUT = function(){
- if( (tryb == 1) && (nick == hero.nick) && (hero.ttl <= wyczerp) ){
- window.location.href = "https://www.margonem.pl/";
- }
- }
- const _parseInput = parseInput;
- parseInput = (a, b, c) => {
- LOGOUT()
- _parseInput(a,b,c)
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement