I'm playing France in the Grand Campaign. The luis napoleon series of events look strange, don't strat. I think the error is in this paragraph:
event = {
id = 7202
random = no
country = FRA
trigger = {
constitution = { type = democracy }
random = 5
}
name = "EVT_7202_NAME"
desc = "EVT_7202_DESC"
style = 0
date = { day = 1 month = january year = 1845 }
offset = 25
deathdate = { day = 1 month = december year = 1848 }
action_a = {
name = "ACTIONNAME7202A" # Republican reform
command = { type = pop_consciousness which = labourers value = -5 }
command = { type = pop_consciousness which = capitalists value = -5 }
command = { type = pop_consciousness which = clerks value = -5 }
command = { type = pop_consciousness which = craftsmen value = -5 }
command = { type = pop_militancy which = labourers value = -5 }
command = { type = pop_militancy which = capitalists value = -5 }
command = { type = pop_militancy which = clerks value = -5 }
command = { type = pop_militancy which = craftsmen value = -5 }
command = { type = force_ruling_party which = conservative }
command = { type = sleep_party which = 7205 }
command = { type = wake_party which = 7202 }
command = { type = wake_party which = 7203 }
}
}
the constitution type of France can't be a democracy and I changed so:
event = {
id = 7202
random = no
country = FRA
trigger = {
constitution = { type = constitutional_monarchy }
random = 5
}
it seems to work. Anyway after the february revolution of 1848, France became a republic, then I would suggest a new row in the action_a
command = { type = constitution which = democracy }
event = {
id = 7202
random = no
country = FRA
trigger = {
constitution = { type = democracy }
random = 5
}
name = "EVT_7202_NAME"
desc = "EVT_7202_DESC"
style = 0
date = { day = 1 month = january year = 1845 }
offset = 25
deathdate = { day = 1 month = december year = 1848 }
action_a = {
name = "ACTIONNAME7202A" # Republican reform
command = { type = pop_consciousness which = labourers value = -5 }
command = { type = pop_consciousness which = capitalists value = -5 }
command = { type = pop_consciousness which = clerks value = -5 }
command = { type = pop_consciousness which = craftsmen value = -5 }
command = { type = pop_militancy which = labourers value = -5 }
command = { type = pop_militancy which = capitalists value = -5 }
command = { type = pop_militancy which = clerks value = -5 }
command = { type = pop_militancy which = craftsmen value = -5 }
command = { type = force_ruling_party which = conservative }
command = { type = sleep_party which = 7205 }
command = { type = wake_party which = 7202 }
command = { type = wake_party which = 7203 }
}
}
the constitution type of France can't be a democracy and I changed so:
event = {
id = 7202
random = no
country = FRA
trigger = {
constitution = { type = constitutional_monarchy }
random = 5
}
it seems to work. Anyway after the february revolution of 1848, France became a republic, then I would suggest a new row in the action_a
command = { type = constitution which = democracy }
Upvote
0