Im looking for a simple mod.
:computer: Has anyone created a simple mod where the Brutii and Scipii dont exist leaving only the Julii and the senate....and the post Marius units are available from the start? Ive looked around but there seems to be a mountain of mods out there and I realy dont know how to do it myself. please help me.
Re: Im looking for a simple mod.
There are ways to do this yourself - just modifying text files mostly. Someone more experianced might be able to spell it all out for you, but the information is out there (and in here!) for you to find. ~:cheers:
Re: Im looking for a simple mod.
O think that to make the post amrius troops available form the start you need to delete the line 'post marian reforms', but does anyone know how I can make pre-marian troops (specifically triarii) available after the reforms?
Re: Im looking for a simple mod.
This is the normal configuration of edb:
Code:
recruit "roman triarii" 0 requires factions { roman, } and not marian_reforms
recruit "roman legionary cohort ii" 0 requires factions { roman, } and marian_reforms
To allow the recruitment all along the game, you must delete all the references to the marian_reforms in this way:
Code:
recruit "roman triarii" 0 requires factions { roman, }
recruit "roman legionary cohort ii" 0 requires factions { roman, }
You must do it in all the levels of the buildings where the units appear.
:bow: