ericbabe
Posts: 11927
Joined: 3/23/2005 Status: offline
|
To change CAPs, edit the firefight .XML file. You can just use a vanilla text editor for this, or you can get a free XML editor (I recommend Microsoft's XML Editor, msdn.microsoft.com/en-us/library/ms255810(v=vs.80).aspx) or a free text editor that has support for XML files (I use the excellent Notepad++). The section with the CAPs looks something like this: <PlayerCapsForTurnList> <PlayerCapsForTurn> <PlayerName>Germans</PlayerName> <CAPS>8</CAPS> <Turn>0</Turn> <AllTurns>true</AllTurns> </PlayerCapsForTurn> <PlayerCapsForTurn> <PlayerName>Russians</PlayerName> <CAPS>6</CAPS> <Turn>0</Turn> <AllTurns>true</AllTurns> </PlayerCapsForTurn> </PlayerCapsForTurnList> Find this section in the XML file and change the 8 and 6 to whatever new values you'd like. You can adjust it to give different CAPs on different turns, but it's a little trickier. You have to do something like this: <PlayerCapsForTurnList> <PlayerCapsForTurn> <PlayerName>Germans</PlayerName> <CAPS>8</CAPS> <Turn>0</Turn> <AllTurns>true</AllTurns> </PlayerCapsForTurn> <PlayerCapsForTurn> <PlayerName>Russians</PlayerName> <CAPS>6</CAPS> <Turn>1</Turn> </PlayerCapsForTurn> <PlayerCapsForTurn> <PlayerName>Russians</PlayerName> <CAPS>7</CAPS> <Turn>2</Turn> </PlayerCapsForTurn> <PlayerCapsForTurn> <PlayerName>Russians</PlayerName> <CAPS>8</CAPS> <Turn>0</Turn> <AllTurns>true</AllTurns> </PlayerCapsForTurn> </PlayerCapsForTurnList> This gives the Russians 6 CAPs on turn 1, 7 CAPs on turn 2, and 8 CAPs on any other turn. For your second question, you should have to copy and rename at least four files: .scenario, .xml, _AIReinf.txt, and _Intro_00.png. However some scenarios contain other files; for instance, in the Commanding Heights there are files that end in "_RussiansFoot Mine.txt" that should be copied and renamed as well. (These are text files that have different "plans" for the AI to place units or mines at the start of a scenario. The AI randomly picks one of the plans and uses that as a guide for placing these objects.)
_____________________________
|