Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name anty-duszek
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Omija "ducha"/anti-afk w margonem
- // @author you
- // @match http://*.margonem.pl/
- // @grant none
- // @require http://www.wklejto.pl/txt797995
- // ==/UserScript==
- setInterval(() => {
- const ghost = document.querySelector('#stasis-overlay').style.display
- if(!localStorage.getItem('numCheck')) localStorage.setItem('numCheck', 0)
- if(ghost === "block" || ghost === "") {
- if(localStorage.getItem('numCheck') === "0") {
- goTo(hero.x + 1, hero.y)
- localStorage.setItem('numCheck', 1)
- } else if (localStorage.getItem('numCheck') === "1") {
- goTo(hero.x - 1, hero.y)
- localStorage.setItem('numCheck', 0)
- }
- console.log('duch aktywny')
- } else if (ghost === "none") {
- console.log('duch nieaktywny')
- }
- }, 5000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement