Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
712
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. // ==UserScript==
  2. // @name anty-duszek
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Omija "ducha"/anti-afk w margonem
  6. // @author you
  7. // @match http://*.margonem.pl/
  8. // @grant none
  9. // @require http://www.wklejto.pl/txt797995
  10. // ==/UserScript==
  11.  
  12. setInterval(() => {
  13. const ghost = document.querySelector('#stasis-overlay').style.display
  14. if(!localStorage.getItem('numCheck')) localStorage.setItem('numCheck', 0)
  15.  
  16. if(ghost === "block" || ghost === "") {
  17. if(localStorage.getItem('numCheck') === "0") {
  18. goTo(hero.x + 1, hero.y)
  19. localStorage.setItem('numCheck', 1)
  20. } else if (localStorage.getItem('numCheck') === "1") {
  21. goTo(hero.x - 1, hero.y)
  22. localStorage.setItem('numCheck', 0)
  23. }
  24. console.log('duch aktywny')
  25. } else if (ghost === "none") {
  26. console.log('duch nieaktywny')
  27. }
  28. }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement