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

bestmajor

Field Marshal
40 Badges
Jun 5, 2008
3.003
89
  • Crusader Kings II
  • Pillars of Eternity
  • Mount & Blade: Warband
  • Semper Fi
  • Majesty 2
  • Iron Cross
  • Heir to the Throne
  • Hearts of Iron III
  • Arsenal of Democracy
  • Divine Wind
  • Europa Universalis III
  • East India Company
  • Crusader Kings II: The Old Gods
  • Darkest Hour
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Golden Century
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - Snowfall
  • Achtung Panzer
  • Europa Universalis IV: Mare Nostrum
  • Hearts of Iron IV Sign-up
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Rise of Prussia
  • Europa Universalis IV: El Dorado
  • Europa Universalis III: Collection
  • Cities: Skylines
  • 500k Club
  • Europa Universalis IV
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
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
}
}
 

Karagin

Colonel
4 Badges
Jan 30, 2005
975
0
  • Arsenal of Democracy
  • Hearts of Iron III
  • Victoria 2
  • 500k Club
THANK YOU! That worked out for me! Thank you again for the help.