Trains pally automatically
目前為
// ==UserScript==
// @name Train Pally
// @description Trains pally automatically
// @version 1
// @include https://*/game.php?village=*&screen=statue*
// @namespace https://greasyfork.org/users/151096
// ==/UserScript==
let train = document.querySelector("#knight_actions > div > a");
let activity = document.querySelector("#knight_activity > span");
setInterval(function() {
if(!activity) {
train.click();
setTimeout(function() { document.querySelector("#popup_box_knight_regimens > div > div:nth-child(4) > div.actions.center > a:nth-child(1)").click()}, 200);
}
}, 2000);