Size: 1318
Comment:
|
Size: 1600
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
This script will echo your troop & resource totals for each city and for your entire account. | This script will echo your troop & resource totals for each city and for your entire account. <<BR>> Troop upkeep per city and total for account added as well. Note it shows upkeep with vesta, etc. buffs factored in, not unbuffed. |
Line 18: | Line 19: |
up = 0 | |
Line 28: | Line 30: |
if c up = up + c.resource.troopCostFood | |
Line 33: | Line 36: |
if showcities if c echo c.name + " - " + TroopBeanToString(tr, ",") | if showcities if c echo c.name + " - " + TroopBeanToString(tr, ",") + " (Upkeep: " + floor(c.resource.troopCostFood) + ")" |
Line 38: | Line 41: |
echo "TOTAL RESOURCES:\nGold: " + floor(g) + "\nTotal Food: " + floor(f) + "\nTotal Wood: " + floor(w) + "\nTotal Stone: " + floor(s) + "\nTotal Iron: " + floor(i) | echo "TOTAL RESOURCES:\nTotal Gold: " + floor(g) + "\nTotal Food: " + floor(f) + "\nTotal Wood: " + floor(w) + "\nTotal Stone: " + floor(s) + "\nTotal Iron: " + floor(i) echo "TOTAL UPKEEP: " + floor(up) |
This script will echo your troop & resource totals for each city and for your entire account.
Troop upkeep per city and total for account added as well. Note it shows upkeep with vesta, etc. buffs factored in, not unbuffed.
// ======================================================= // Troop & Resource Totals For Each City & Entire Account // Originally by romulus // Inny bloated it with the resource stuff :P // ======================================================= // set this to 1 if you want individual city troopcounts displayed too, 0 if not showcities = 0 mycities = cities.concat() echo "ACCOUNT TOTALS: Found " + mycities.length + " castle(s)" echo "Please wait. Calculating..." t = GetTroops("a:0") up = 0 g = 0 f = 0 w = 0 s = 0 i = 0 label mainLoop c = mycities.shift() if c c = c.cityManager if c tr = c.getAvailableTroop() if c up = up + c.resource.troopCostFood if c g = g + c.resource.gold if c f = f + c.resource.food.amount if c w = w + c.resource.wood.amount if c s = s + c.resource.stone.amount if c i = i + c.resource.iron.amount if showcities if c echo c.name + " - " + TroopBeanToString(tr, ",") + " (Upkeep: " + floor(c.resource.troopCostFood) + ")" if c dummy = tr.addTo(t) if c goto mainLoop echo "TOTAL TROOPS:\n" + TroopBeanToString(t, "\n") echo "TOTAL RESOURCES:\nTotal Gold: " + floor(g) + "\nTotal Food: " + floor(f) + "\nTotal Wood: " + floor(w) + "\nTotal Stone: " + floor(s) + "\nTotal Iron: " + floor(i) echo "TOTAL UPKEEP: " + floor(up)