How to make commonwealth nations autonomous?
-
I was trying it considering wwii global xml, I've done it exactly the same things (for only Canberra as testing) but it didn't work.
<!-- British Game Sequence --> <step name="britishPurchase" delegate="purchase" player="British"/> <step name="anzacPurchase" delegate="purchase" player="Anzac"/> <step name="britishCombatMove" player="British" delegate="move"> <stepProperty name="combinedTurns" value="British:Anzac"/> </step> <step name="britishBattle" delegate="battle" player="British"/> <step name="britishNonCombatMove" delegate="move" player="British" display="Non Combat Move"> <stepProperty name="combinedTurns" value="British:Anzac"/> </step> <step name="britishEndTurn" delegate="endTurn" player="British"> <stepProperty name="skipPosting" value="true"/> </step> <step name="anzacPlace" delegate="place" player="Anzac"/> <step name="anzacEndTurn" delegate="endTurn" player="Anzac"> <stepProperty name="turnSummaryPlayers" value="British:Anzac"/> </step>
<attachment name="unitAttachment" attachTo="Infantry" javaClass="games.strategy.triplea.attachments.UnitAttachment" type="unitType">
<option name="movement" value="1"/>
<option name="attack" value="1"/>
<option name="defense" value="2"/>
<option name="transportCost" value="2"/>
<option name="artillerySupportable" value="true"/>
<option name="canBeGivenByTerritoryTo" value="British"/>
</attachment><attachment name="territoryAttachment" attachTo="Canberra" javaClass="games.strategy.triplea.attachments.TerritoryAttachment" type="territory">
<option name="production" value="6"/>
<option name="capital" value="Anzac"/>
<option name="changeUnitOwners" value="British"/>
<option name="whenCapturedByGoesTo" value="British:Anzac"/>
<!--<option name="victoryCity" value="1"/>-->
</attachment> -
@Schulz not quite sure what you're trying to do. Do you want ANZAC to be controlled during the British player's turn but remain it's own country ? Somewhat similar to the way India/UK Pacific works ?
-
Yes, the same way.
-
@Schulz cool idea. Hmm...Idk : )
-
I have moved this topic to general map making and xml editing, as the answer/solution is not map specific and could be helpful for other map projects.
@Schulz I hope you get it to work