/ ‘grepolis.user.js’

This commit is contained in:
Jan Bader 2014-06-04 15:53:55 +02:00
parent 72983e71d0
commit 2785bd863a

View File

@ -10,7 +10,7 @@
// //
// @match http://*.grepolis.com/game/* // @match http://*.grepolis.com/game/*
// //
// @version 1.0.38 // @version 1.0.39
// @updateURL http://git.javil.eu/jan/userscripts/raw/master/grepolis.user.js // @updateURL http://git.javil.eu/jan/userscripts/raw/master/grepolis.user.js
// ==/UserScript== // ==/UserScript==
@ -34,6 +34,7 @@
} }
}; };
lastAmounts = "";
console.log("Initializing..."); console.log("Initializing...");
windows = {}; windows = {};
farm_ids = [1225, 1226, 1229, 1230, 1231]; farm_ids = [1225, 1226, 1229, 1230, 1231];
@ -50,7 +51,12 @@
var d = new Date(); var d = new Date();
var dformat = "[" + [d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds()].join(':') + "]"; var dformat = "[" + [d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds()].join(':') + "]";
$('.town_name').text(dformat); $('.town_name').text(dformat);
console.log($.map($(".indicator .amount"),function(v){return $(v).text()}).join(", "));
var amounts = $.map($(".indicator .amount"),function(v){return $(v).text()}).join(", ");
if(amounts != lastAmounts) {
console.log(amounts);
lastAmounts = amounts;
}
var windowId = windows[xFarmId]; var windowId = windows[xFarmId];
if(windowId == undefined){ if(windowId == undefined){