• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Kretoxian

Anon, we are legion
23 Badges
Oct 12, 2005
2.743
2
  • Iron Cross
  • Shadowrun: Hong Kong
  • Shadowrun: Dragonfall
  • Shadowrun Returns
  • Tyranny: Archon Edition
  • Stellaris
  • Magicka 2
  • Pillars of Eternity
  • Europa Universalis III: Collection
  • 500k Club
  • Semper Fi
  • Majesty 2 Collection
  • Cities in Motion 2
  • Heir to the Throne
  • Hearts of Iron III Collection
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Divine Wind
  • Europa Universalis III
  • Darkest Hour
  • Crusader Kings II: The Old Gods
  • Crusader Kings II
If yes, how can i define them in the country .inc file?
 
atm infantry can have two division ... but dont know how to define ... <--- just player no modder ^^
 
The ability of a landdivision to have two (or more (up to five I believe)) brigades is defined in the particular unit's file in the DB/Divisions folder. I do not think that it is able to be defined in .inc files I am afraid, ie to be country specific. The syntax you would be looking for (in the infantry.txt file for example) would be:
max_allowed_brigades = 2
 
yes, i know in fact that a division can host two brigades, but i'm asking how can i make it, using only the scenario definition files.
 
yes, i know in fact that a division can host two brigades, but i'm asking how can i make it, using only the scenario definition files.
Maybe by adding an additional brigade code?
ex:
Division = {
id = { type = 14500 id = 41 }
name = "12. Infanterie-Division"
type = infantry
model = 8
strength = 90
extra = artillery
brigade_model = 6
extra = artillery
brigade_model = 6
}
 
Maybe by adding an additional brigade code?
ex:
Division = {
id = { type = 14500 id = 41 }
name = "12. Infanterie-Division"
type = infantry
model = 8
strength = 90
extra = artillery
brigade_model = 6
extra = artillery
brigade_model = 6
}

I tried it, but the game ignores the first one giving only the later one to the unit.
 
Wait a second, this is two of the same brigade. I didn't that was doable. Its strange that you can have Art and Sp-Art but not Art and Art. Maybe it would help to change one of the brigade types, even if just for diagnosing whats really going on in the code
 
As far as I know you can only have one brigade of each type; you cannot have two artillery brigades in the same division. And, as far as I know, the syntax is the same as that used for ships:
extra1 = artillery
brigade_model1 = 0
extra2 = armored_car
brigade_model2 = 0
 
As far as I know you can only have one brigade of each type; you cannot have two artillery brigades in the same division. And, as far as I know, the syntax is the same as that used for ships:
extra1 = artillery
brigade_model1 = 0
extra2 = armored_car
brigade_model2 = 0

Yes, that's what i meant, it's working now, thanks!