hi all
I have a very strange issue - hope someone can help me.
I have two similar Events:
and
all dormant divisons are defined in the italy.inc
Now the Problem:
in case 1 (U49 Event), the Units spawn for Italian East Africa. WAD.
in case 2(ALB Event), the Units spawn, but as italian (ITA) Units.
Both countries are puppet, allied and gave Access to ITA, ITA has no Military Command for both.
I'm at the end with my Logical thinking…. I really don't see the Point, why this isn't working for ALB as for U49.
Anyone knows more?
Greez and Thanks
Opa
I have a very strange issue - hope someone can help me.
I have two similar Events:
Code:
event = {
id = 1936698
random = no
country = U49
name = "EVT_1936698_NAME"
desc = "EVT_1936698_DESC"
style = 2
picture = "AOI_army"
# Triggered by ITA event
action_a = {
trigger = { flag = AOI_army_all }
name = "ACTION_GOOD"
#AOI commando
command = { type = add_division which = "Comando Superiore dell'AOI" value = hq when = 2 }
#blackshirt legion
command = { type = add_division which = "Milizia Coloniale" value = militia when = 5 }
#italian divisions
command = { type = add_corps which = "Forze Armata AOI" value = land when = 1060024 where = 825 }
command = { type = activate_division which = 23500 value = 311 }
command = { type = activate_division which = 23500 value = 312 }
#colony divisions
command = { type = activate_division which = 23500 value = 313 }
command = { type = activate_division which = 23500 value = 314 }
command = { type = activate_division which = 23500 value = 315 }
command = { type = activate_division which = 23500 value = 316 }
command = { type = activate_division which = 23500 value = 317 }
command = { type = activate_division which = 23500 value = 318 }
command = { type = activate_division which = 23500 value = 319 }
etc... etc...
} }
and
Code:
event = {
id = 1936741
random = no
country = ALB
name = "EVT_1936741_NAME"
desc = "EVT_1936740_DESC"
style = 2
picture = "Albania_Occupation"
# Triggered by ITA event
action_a = {
name = "ACTION_GOOD"
#italian divisions
command = { type = add_corps which = "9o Armata" value = land where = 358 } #Tirana
command = { trigger = { flag = venezia_1 } type = activate_division which = 23500 value = 340 } #Venezia
command = { trigger = { flag = ferrara_1 } type = activate_division which = 23500 value = 341 } #Ferrara
command = { trigger = { flag = arezzo_1 } type = activate_division which = 23500 value = 345 } #Arezzo
command = { trigger = { flag = centauro_1 } type = activate_division which = 23500 value = 347 } #Centauro
#Air
command = { type = add_division which = "38o Stormo Bombardamento Terrestre" value = strategic_bomber when = 4 where = -52 }
command = { type = add_division which = "160o Gruppo Autonomo Caccia" value = multi_role when = 5 where = -74 }
command = { type = add_division which = "120a Squadriglia Osservazione Aerea" value = multi_role when = 4 where = -87 }
command = { trigger = { event = 2006030 } type = strength_cap which = infantry value = 70 }
}
}
all dormant divisons are defined in the italy.inc
Code:
#AOI Troops
landdivision = { dormant = yes id = { type = 23500 id = 311 } name = "40a Divisione fanteria 'Cacciatori d'Africa'" type = infantry model = 8 strength = 20 max_strength = 70 }
landdivision = { dormant = yes id = { type = 23500 id = 312 } name = "65a Divisione fanteria 'Granatieri di Savoia'" type = infantry model = 8 strength = 20 max_strength = 70 }
landdivision = { dormant = yes id = { type = 23500 id = 313 } name = "1a Divisione coloniale" type = infantry model = 8 strength = 50 max_strength = 70 }
landdivision = { dormant = yes id = { type = 23500 id = 314 } name = "2a Divisione coloniale" type = infantry model = 8 strength = 50 max_strength = 70 }
landdivision = { dormant = yes id = { type = 23500 id = 315 } name = "4a Divisione coloniale" type = infantry model = 8 strength = 50 max_strength = 70 }
…
…
…
...
#albanian troops
landdivision = { dormant = yes id = { type = 23500 id = 340 } name = "19a Divisione 'Venezia'" type = infantry model = 10 }
landdivision = { dormant = yes id = { type = 23500 id = 341 } name = "23a Divisione 'Ferrara'" type = infantry model = 10 }
landdivision = { dormant = yes id = { type = 23500 id = 342 } name = "29a Divisione 'Piemonte'" type = infantry model = 10 }
landdivision = { dormant = yes id = { type = 23500 id = 343 } name = "49a Divisione 'Parma'" type = infantry model = 10 }
…
…
…
...
Now the Problem:
in case 1 (U49 Event), the Units spawn for Italian East Africa. WAD.
in case 2(ALB Event), the Units spawn, but as italian (ITA) Units.
Both countries are puppet, allied and gave Access to ITA, ITA has no Military Command for both.
I'm at the end with my Logical thinking…. I really don't see the Point, why this isn't working for ALB as for U49.
Anyone knows more?
Greez and Thanks
Opa