Can someone write me a quick event that gives 3 infantry divisions to a country? I'm testing my mod and this event would be great. I wrote this event, but it doesn't work for some reason:
Ideas?
Code:
event = {
id = 122022
random = no
country = GER
trigger = {
ai = yes
}
date = { day = 0 month = january year = 1936 }
offset = 15
deathdate = { day = 30 month = december year = 1964 }
name = "Forces"
desc = "Troops for nations"
style = 0
action_a = {
name = "Yes"
ai_chance = 100
command = { type = add_division which = "Army 1" value = infantry when = 2 }
command = { type = add_division which = "Army 2" value = infantry when = 2 }
command = { type = add_division which = "Army 3" value = infantry when = 2 }
}
}
Ideas?