thenobodies80 wrote:what you wrote means that Boz is a territory that starts with 3 armies (default) and borders with Aox.
What in that XML denotes 3 starting armies? is that default? and how would I modify the starting armies amount? 
Full XML in this post.I know this starts with 1 then autodeploys 3
- Code: Select all
- <territory>
 <name>Brago</name>
 <borders>
 <border>Bek</border>
 </borders>
 <coordinates>
 <smallx>252</smallx>
 <smally>340</smally>
 <largex>337</largex>
 <largey>446</largey>
 </coordinates>
 <bonus>3</bonus>
 </territory>
and I know this starts with 15 neutral.
- Code: Select all
- <territory>
 <name>Shield - Brago</name>
 <borders>
 <border>Brago</border>
 </borders>
 <coordinates>
 <smallx>251</smallx>
 <smally>360</smally>
 <largex>336</largex>
 <largey>473</largey>
 </coordinates>
 <neutral>15</neutral>
 </territory>
but I don't know how to make a player starting territory and start with 3 and not get an autodeploy every turn.
---------------------------------------------------------
I actually have 16 starting territories. I want the first 8 to be divided up evenly amongst the players and the second 8 to also be divided up evenly. Is there a way to do that. And what happens in odd number player games. 
For instance ... if i used this code...
- Code: Select all
- <positions>
 <position>
 <territory>W 1</territory>
 </position>
 <position>
 <territory>W 2</territory>
 </position>
 <position>
 <territory>W 3</territory>
 </position>
 <position>
 <territory>W 4</territory>
 </position>
 <position>
 <territory>W 5</territory>
 </position>
 <position>
 <territory>W 6</territory>
 </position>
 <position>
 <territory>W 7</territory>
 </position>
 <position>
 <territory>W 8</territory>
 </position>
 <position>
 <territory>M 1</territory>
 </position>
 <position>
 <territory>M 2</territory>
 </position>
 <position>
 <territory>M 3</territory>
 </position>
 <position>
 <territory>M 4</territory>
 </position>
 <position>
 <territory>M 5</territory>
 </position>
 <position>
 <territory>M 6</territory>
 </position>
 <position>
 <territory>M 7</territory>
 </position>
 <position>
 <territory>M 8</territory>
 </position>
 </positions>
Would it drop ?
8 player - 8 random drops on W, 8 random drops on M.
or
Would it drop ?
8 player - 16 random drops on W and M combined.
and what happens below 8 players.
Would it drop ?
7 player - 7 random drops on W, 7 random drops on M.
or 
7 player - 7 random drops on W, 7 random drops on the remaining W and the remaining M.
or 
Would it drop ?
7 player - 14 random drops on W and M combined.
----------------------------------------------------------------
Sorry for the questions but this is a little confusing, maybe what i would like to do it isn't possible.
--D