Moderator: Tech Team
/* --- Confirmation Popups --- */
if (((command == 'End Assaults' || command == 'End Reinforcement' || (command == 'Reinforce' && gameSettings.fortifications != eFortifications.UNLIMITED)) && myOptions.confirmEnds) || (command == 'Auto-Assault' && myOptions.confirmAutoAttack) || (command == 'Deploy' && myOptions.confirmDeploy)) {
var message = "Are you sure you wish to " + command + "?";
if (command == "Reinforce") {
message = "Only one reinforcement possible, are you sure?";
}
if (confirm(message)) {
if (command == 'Reinforce' || command == 'End Reinforcement' )
{
document.getElementById('snapToChat').click();
alert('Snapshot taken');
}
return newsendRequest(command);
} else {
return false;
}
} else {
return newsendRequest(command);
}
Users browsing this forum: No registered users