Changelog 8.222 Feedback

LizardMoon

New Member
Reaction score
4
Hi
Great about inventory on mobile, sometimes really hard to know what they are without risking their activation. Liked the flag update previously for the same reason.

In the app the ability to see troop numbers attacking/supporting villages on the map view, where you have command share, would be great.

Thanks
 

Damacsta

Member
Reaction score
37
In the app the ability to see troop numbers attacking/supporting villages on the map view, where you have command share, would be great.

Thanks

While not nearly as good as a proper implementation, this script will show you troop counts of a command you select.

javascript:if (window.location.href.indexOf('screen=info_command') < 0) {
UI.ErrorMessage ("This only works on command info page"); } else {
var a = document.createElement('span');
a.setAttribute("id","troop_counts");
$("#content_value").append(a);
var t = $('#quickedit-rename').attr('data-id');
Command.pending_details[t] = !0, TribalWars.get("info_command", { ajax: "details", id: t }, function(n) {
Command.details_cache[t] = n, Command.pending_details[t] = !1, a.innerHTML =(Command.getDetailsHTML(Command.details_cache[t]))
} );
};
 
Top