Neopets - Magma pool helper

Refreshes the page every five minutes until the guard is asleep, then prints the current time

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        Neopets - Magma pool helper
// @namespace   https://greasyfork.org/en/users/58051-roblox
// @description Refreshes the page every five minutes until the guard is asleep, then prints the current time
// @include     http://www.neopets.com/magma/pool.phtml
// @version     1
// @grant       none
// ==/UserScript==

var time = document.getElementById("nst").textContent;
var pool = document.getElementById("poolOuter");
var text = pool.textContent.trim();

if (text.startsWith("I'm sorry, ")) {
	console.log("No");
	setTimeout(function() {
		location.reload(false);
	}, 5 * 60 * 1000);
} else {
	console.log("Success");
	document.title = time;
}

console.log(time);