avatar
Untitled

Guest 257 21st Nov, 2022

MARKUP 1.06 KB
                                           
                         // ==UserScript==
// @name         anti-ghost g�ra d�B
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Omija "ducha"/anti-afk w margonem
// @author       Sharley
// @match        https://*.margonem.pl/
// @grant        none
// @require https://pastebin.com/raw/hyi6d4Rc
// ==/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, hero.y + 1)
            localStorage.setItem('numCheck', 1)
        } else if (localStorage.getItem('numCheck') === "1") {
            goTo(hero.x, hero.y - 1)
            localStorage.setItem('numCheck', 0)
        }
        console.log('duch aktywny')
    } else if (ghost === "none") {
        console.log('duch nieaktywny')
    }
}, 5000);
                      
                                       
To share this paste please copy this url and send to your friends
RAW Paste Data
Recent Pastes
Ta strona używa plików cookie w celu usprawnienia i ułatwienia dostępu do serwisu oraz prowadzenia danych statystycznych. Dalsze korzystanie z tej witryny oznacza akceptację tego stanu rzeczy.
Wykorzystywanie plików Cookie
Jak wyłączyć cookies?
ROZUMIEM