Seterra map hack - polish

Jest to kod który rozwiązuje sam większość quizów na https://www.geoguessr.com/seterra/pl. UWAGA!! Kod działa tylko w polskiej wersji językowej. Kliknij _/- potem +/=

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name     Seterra map hack - polish
// @description     Jest to kod który rozwiązuje sam większość quizów na https://www.geoguessr.com/seterra/pl. UWAGA!! Kod działa tylko w polskiej wersji językowej. Kliknij _/- potem +/=
// @author   Ugefen
// @version  1.2
// @grant    none
// @match    https://www.geoguessr.com/seterra/pl/vgp/*
// @match    https://www.geoguessr.com/pl/vgp/*
// @match    https://www.geoguessr.com/seterra/vgp/*
// @license  MIT
// @namespace https://greasyfork.org/users/1078504
// ==/UserScript==


let now = 0;
let el1;
let max;
let speed;
function loopAnswering(){
	if(now<max){
el1 = document.querySelector('[data-qText="'+document.getElementById('currQuestion').innerHTML.slice(11,document.getElementById('currQuestion').innerHTML.length)+'"]  ');
unsafeWindow.checkQuestion(el1, true);
now++;
	setTimeout(loopAnswering,speed);
}
}
document.addEventListener("keydown",checkKeyCheat,false);
function checkKeyCheat(e){
if(e.keyCode==61){
   loopAnswering();
}
if(e.keyCode==173){
	max= prompt("Ilość elementów (Napisane jest w nawiasie obok wszystkich krajów po wejściu do quizu z mapy)");
speed= prompt("Prędkość (Im mniejsza tym szybciej rozwiązuje, standardowo 500)");
}

}