Add this to your tampermonkey/greasemonkey, and voila!
It automatically deploys and ends phases. The only thing it doesn't do is handle deferred troops, as far as I know.
You have to keep the window open for it to work. Use it on your speed games and stop getting rated a deadbeat.
-jr
// ==UserScript==
// @name AutoResign
// @namespace http://www.meat.com
// @version 0.1
// @description Will deploy troops and end turn for you. Need to add handling for deferred troop deployment.
// @match *://www.conquerclub.com/game.php?game=*
// @copyright 2014+, jr hahaha
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
$(document).ready( function() {
console.log('Resign running');
/*$("#snapToChat").on('click', function() {
});*/
$("#snapshotState").after('<button id="autoResign" class="auto-resign-off" style="margin-left:12px">RESIGN</button>');
var timer = null,
interval = 3000;
var disabled = false;
$("#autoResign").on('click', function() {
$(this).toggleClass('auto-resign-off auto-resign-on');
if($(this).hasClass('auto-resign-off') ) {
$(this).html('Auto Resign - OFF');
clearInterval(timer);
timer = null;
}
if($(this).hasClass('auto-resign-on') ) {
$(this).html('Auto Resign - ON');
if(timer !== null) return;
timer = setInterval( function() {
if($("#gamebutton_waiting_begin").length > 0) {
$("#gamebutton_waiting_begin").click();
}
if($("#gamebutton_deploy").length > 0) {
$("#gamebutton_deploy").click();
}
if($("#gamebutton_assault_end").length > 0) {
$("#gamebutton_assault_end").click();
}
if($("#gamebutton_reinforce_end").length > 0) {
$("#gamebutton_reinforce_end").click();
}
$("#action_refresh").click();
},interval);
}
});
});