Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Logajka O danej godzinie i powrót
- // @version 0.1
- // @author Squanchy
- // @match *://*.pl/*
- // @grant none
- // ==/UserScript==
- //Match musi byc taki bo skrypt musi miec dostep do strony głównej margonem :)
- setInterval(() => {
- let data = new Date();
- let godzina = data.getHours();
- let minuta = data.getMinutes();
- let sekunda = data.getSeconds();
- //Tutaj Podajesz godz i min ew Sek Wylogowania
- if(godzina == 22 && minuta >= 36){
- if(window.location.href !== "https://www.margonem.pl/?task=ladder"){
- window.location.href = "https://www.margonem.pl/?task=ladder";}}
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement