• 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.

Karagin

Colonel
4 Badges
Jan 30, 2005
975
0
  • Arsenal of Democracy
  • Hearts of Iron III
  • Victoria 2
  • 500k Club
Okay I am wondering how for user made scenarios or mods one adds leaders so as the nations military units start off with leaders to begin with?
 
you need to do this in the scenario .inc for the country. the number added refers to the leaders ID in the respective CSV. an example for GER:

###################################################################################################
#
# Border troops
#
###################################################################################################


landunit =
{ location = 302 # Stettin (historically Neustettin) / CO Generalmajor Karl Strecker
name = "Grenztruppen Nord-Ost"
id = { type = 14500 id = 700 }
leader = 259 # Karl Stecker
division =
{ id = { type = 14500 id = 701 }
name = "Grenzschutz-Abschnitts-Kdo 1"
type = garrison
model = 0
strength = 30
}
}

landunit =
{ location = 308 # Küstrin (historically Deutsch Krone) / CO Generalmajor Max Bock
name = "Grenztruppen Nord-Ost 2"
id = { type = 14500 id = 702 }
leader = 22 # Max Bock
division =
{ id = { type = 14500 id = 703 }
name = "Grenzschutz-Abschnitts-Kdo 2"
type = garrison
model = 0
strength = 30
}
}

#
#landunit =
# { location = 482 # Oppeln / CO Oberst Friedrich-Wilhelm von Rothkirch und Panthen
# name = "Grenztruppen Süd-Ost"
# id = { type = 14500 id = 704 }
# leader = 1100902 # von Rotkirch und Panthen / Colonel
# division =
# { id = { type = 14500 id = 705 }
# name = "Grenzschutz-Abschnitts-Kdo 3"
# type = garrison
# model = 0
# strength = 30
# }
#}
#

landunit =
{ location = 66 # Aachen / CO Fritz Kühne
name = "Grenztruppen West"
id = { type = 14500 id = 706 }
leader = 1100895 # Fritz Kühne
division =
{ id = { type = 14500 id = 707 }
name = "Grenzschutz-Abs-Kdo 9"
type = garrison
model = 0
strength = 30
}
}
 
THANK YOU! That worked out for me! Thank you again for the help.