Page 1 of 1

Quick Question (XML)

PostPosted: Thu Dec 22, 2011 12:12 am
by crazymilkshake5
how would i make it to where the players would only get 1 troop no matter how many regions they have?

Thanks,
crazy.

Re: Quick Question (XML)

PostPosted: Thu Dec 22, 2011 4:29 am
by natty dread
Reinforcements tags + no bonuses.

Re: Quick Question (XML)

PostPosted: Tue Dec 27, 2011 6:06 am
by zimmah
crazymilkshake5 wrote:how would i make it to where the players would only get 1 troop no matter how many regions they have?

Thanks,
crazy.


Code: Select all
<map>
<minreinforcement>1</minreinforcement>
<reinforcements>
<reinforcement>
<lower>1</lower>
<upper>xx</upper> <! -- exactly equal to the number of territories on your map) -->
<divisor>xx</divisor> <!-- exactly equal to the number of territories on your map +1 -->
</reinforcement>
</reinforcements>
<!-- starting positions (if any) below this line -->
<!-- winning conditions (if any) below this line -->
<!-- Continents below this line -->
<!-- Territories below this line -->
</map>

Re: Quick Question (XML)

PostPosted: Tue Dec 27, 2011 7:43 pm
by crazymilkshake5
Thanks mate!