There's a little problem with this event:
should be changed to:
Considering that in the 1520 scenario, England does not have a core on province 233, the core should either be added by this event, or added in the scenario file.
While this isn't a bug, I thought I'd like to point it out.
Code:
#Henry VIII's Offer
event = {
id = 3827
random = no
country = ENG
name = "EVENTNAME3827"
desc = "EVENTHIST3827"
trigger = {
NOT = { event = 3828 ###Henry VIII's Offer - Ireland Refused
}
}
date = { day = 1 month = october year = 1542 }
offset = 30
deathdate = { day = 31 month = december year = 1542 }
action_a ={ #Accept them#
name = "ACTIONNAME3827A"
command = { type = vassal which = EIR }
command = { type = vassal which = CON }
command = { type = vassal which = LEI }
command = { type = vassal which = MST }
command = { type = vassal which = ULS }
command = { type = addcore which = 231 } #Connaught
command = { type = addcore which = 232 } #Ulster
command = { type = addcore which = 234 } #Leinster
command = { type = addcore which = 235 } #Munster
}
}
should be changed to:
Code:
#Henry VIII's Offer
event = {
id = 3827
random = no
country = ENG
name = "EVENTNAME3827"
desc = "EVENTHIST3827"
trigger = {
NOT = { event = 3828 ###Henry VIII's Offer - Ireland Refused
}
}
date = { day = 1 month = october year = 1542 }
offset = 30
deathdate = { day = 31 month = december year = 1542 }
action_a ={ #Accept them#
name = "ACTIONNAME3827A"
command = { type = vassal which = EIR }
command = { type = vassal which = CON }
command = { type = vassal which = LEI }
command = { type = vassal which = MST }
command = { type = vassal which = ULS }
command = { type = addcore which = 231 } #Connaught
command = { type = addcore which = 232 } #Ulster
[color=orange]command = { type = addcore which = 233 } #Meath#[/color]
command = { type = addcore which = 234 } #Leinster
command = { type = addcore which = 235 } #Munster
}
}
Considering that in the 1520 scenario, England does not have a core on province 233, the core should either be added by this event, or added in the scenario file.
While this isn't a bug, I thought I'd like to point it out.