/ ‘grepolis.user.js’

This commit is contained in:
Jan Bader 2014-06-04 12:16:31 +02:00
parent c5abf90271
commit 4135e1bfef

View File

@ -10,7 +10,7 @@
// //
// @match http://*.grepolis.com/game/* // @match http://*.grepolis.com/game/*
// //
// @version 1.0.25 // @version 1.0.26
// @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==
@ -90,16 +90,17 @@
} }
function getWares(xGetWaresButton, xMood) { function getWares(xGetWaresButton, xMood) {
console.log("Getting wares @ Mood: " + xMood);
farm_ids.forEach(function(xFarmId) { farm_ids.forEach(function(xFarmId) {
getWaresFromFarm(xGetWaresButton, xMood, xFarmId); getWaresFromFarm(xGetWaresButton, xMood, xFarmId);
}); });
} }
function getWaresFromFarm(xGetWaresButton, xFarmId, xMood) { function getWaresFromFarm(xGetWaresButton, xMood, xFarmId) {
if(xMood > 80) { if(xMood > 80) {
console.log("Plündere " + xFarmId + " @ Mood: " + xMood);
w(xGetWaresButton).call('claimLoad', xFarmId.toString(), 'double', 300); w(xGetWaresButton).call('claimLoad', xFarmId.toString(), 'double', 300);
} else { } else {
console.log("Fordere " + xFarmId + " @ Mood: " + xMood);
w(xGetWaresButton).call('claimLoad', xFarmId.toString(), 'normal', 300); w(xGetWaresButton).call('claimLoad', xFarmId.toString(), 'normal', 300);
} }
} }