Advertisement
Nolifeq

zabezpieczenie przed przebiciem lvl

Sep 15th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name zabezpieczenie przed przebiciem lvl
  3. // @version 1.0
  4. // @author baczek
  5. // @match *://*.margonem.pl/
  6. // @exclude https://www.margonem.pl/
  7. // ==/UserScript==
  8.  
  9. const max = 144 // Poziom maksymalny (Gdy osiągnie ten lvl, lub bedzie wyzszy wyloguję cię)
  10.  
  11. const goLogout = () => {
  12. if(hero.lvl>=max){
  13. location.href = "https://www.margonem.pl/"
  14. }}
  15. const thissame = parseInput;
  16. parseInput = (a, b, c) => {
  17. goLogout()
  18. thissame(a,b,c)
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement