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

HogansHeros

Sergeant
32 Badges
Jul 29, 2006
72
0
  • Mount & Blade: Warband
  • Battle for Bosporus
  • Hearts of Iron IV: La Resistance
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: Holy Fury
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: Jade Dragon
  • Hearts of Iron IV: Death or Dishonor
  • Crusader Kings II: Monks and Mystics
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Way of Life
  • Mount & Blade: With Fire and Sword
  • Arsenal of Democracy
  • Pride of Nations
  • 500k Club
  • Victoria 2
  • Hearts of Iron III
  • Europa Universalis IV
  • Darkest Hour
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
  • Crusader Kings II
I am trying to create an event where Finland and Sweden can choose to unite in response to Soviet aggression. Right now I have it so that Sweden inherits Finish lands and units

However, I'd also like Sweden to get Finish leaders and ministers. Obviously I do not want these leaders to be available to Sweden from the beginning, nor should they be available if the countries choose not to unite. What is the best way to do this?

I know that I can copy all of the finish leaders I want into the Swedish leaders file, change their IDs, give them a start date of 1990 or something and then wake them all in an event, but that is a lot of work and I hope there is a shortcut.
 
theres a new event command in AoD, "type = giveleader which ="

check the last event for nationalist china maybe:

##################################
# Recall of German Mission
##################################

event = {
id = 4103
random = no
country = CHI

#Triggered by GER 2035A

name = "EVT_4103_NAME"
desc = "EVT_4103_DESC"
style = 0

action_a = {
name = "OK"
command = { type = dissent value = 1 }
command = { type = giveleader which = 50304 where = GER } #Von Falkenhausen
command = { type = giveteam which = 1000 where = GER } #Von Falkenhausen
command = { type = relation which = GER value = -10 }
command = { type = relation which = JAP value = -10 }
command = { type = relation which = MAn value = -50 }
command = { type = supplies value = 5000 }
}

}