Enter alliance info and click Plan.
The Alliance Mobilization planner answers the question every R4 asks five minutes before a fight: with the members currently online, how many rallies can we actually fill? Enter your available member count, the number of simultaneous rallies you want to launch, and the average troops each member commits. The planner splits members evenly across rallies, shows the total troop weight, and puts every leftover member into a garrison row so nobody idles.
Splits an alliance's members across a set number of simultaneous rallies, as evenly as they divide, and estimates the troops each rally carries.
Math.floor(members / rallies) — Whole members only — nobody joins half a rally.cnt = perRally + (i < remainder ? 1 : 0) — Members who do not divide evenly are given one each to the first rallies, so the difference between the largest and smallest rally is never more than one.cnt * troopsPer — Your own average march size, which the calculator asks for rather than assuming.remainder * troopsPer — Whoever is left after the rallies are filled.Nothing here is a game constant — every number comes from what you type. The arithmetic is shown so you can check it, or do it on paper when you are organising in chat.
Every expression shown in code above is quoted from js/calc-alliance-mob.js, which is the file this page actually runs.