Ok, I found a method of merging armies,
It works, but it's kinda crappy
As I'm bored, I'll post the method, but like I said it's not something I would use all the time + most of you already know it
The RTW engine doesn't have a "merge_armies" command, but there is a workaround:
Say you want to merge the army commanded by "Captain Jvlivs Appvlivs" with the army commanded by "Gaivs Sextvs Cotta".
1) Look at the army composition of Captain Jvlivs Appvlivs's army,
let's assume it exists of three units of Cohors Reformata (1 silver chevron, "silver" armour and "bronze" weapons).
2) Add the units to the army of Gaivs Sextvs Cotta, by opening the console and entering the following:
Code:
create_unit "Gaivssextvs Cotta", "roman infantry legionary cohort i" 3 4 2 1
-> 3 units of Cohors Reformata will spawn in Cotta's army, each will have a single silver chevron, "silver" armour and "bronze" weapons.
Quick explanation of the code:
Code:
"Gaivssextvs Cotta" -> Characters name, Gaivs and Sextvs
have to be joined together. Sextvs has no capital letter.
You could also use a settlements name instead of a characters name.
"roman infantry legionary cohort i" -> The unit label, this can be found
in the "export_units.txt" file. Don't use '_' !!!
3 4 2 1 -> 3 units / 4 chevrons / 2 armourupgrades / 1 weaponsupgrade.
Don't forget to place a "," between the name and the unit label !!!
Their are some drawbacks though: every spawned unit is at full strength.
I don't think you can lower the amount of soldiers in a group.
A second drawback is that you can't "merge" general units.
3) We still need to get rid of Captain Jvlivs Appvlivs's army, there are 2 ways, a short and a longer way:
3) a) For the short way, just enter this in the console:
Code:
move_character "Captain Jvlivsappvlivs" 2,48
Explanation of the code:
Code:
"Captain Jvlivsappvlivs" -> The characters name with Jvlivs and Appvlivs
joined together. Appvlivs has no capital letter.
2,48 -> x and y coordinates of a tile on the campaignmap.
This code will move our Captain to tile 2,48 where he is stranded inside a small piece of desert.
Moving 2 armies onto the same tile causes a graphic glitch, to avoid it, use different coordinates each time.
if you let the x-coordinate range from 0 to 8 and the y-coordinate from 46 to 53, the moved unit will always end up in that isolated area.
Keep in mind that the army still exists and its upkeep will still cost Mnai.
3) b) The longer way is actually the same as the short way, but you don't only move the army, you also destroy it.
Just do this:
Hire/Spawn a single unit of mercenaries and move it next to the army.
Type into the console:
Attack the army with your mercenaries, when the battle screen pops up click on auto-resolve.
You will win the battle. After the army is destroyed, you can disband the mercenary unit.
If anybody knows a better/faster way, please don't hesitate to tell me, I would appreciate it
One last question, is there a list with all the unit labels/names?
Looking them up every time isn't really that practical
Bookmarks