I've written the following event for use with the EU2VIC converter, but for some reason it wont trigger. I've run a test lasting about 5 years into the game with the UK, but still no Industrial Revolution. Can anyone spot the problem?
Code:
[color=white]
#Industrial Revolution
event = {
id = 6
random = no
invention = yes
trigger = {
civilized = yes
atwar = no
OR = {
religion = { country = -1 type = protestant }
religion = { country = -1 type = catholic }
}
}
name = "Industrial Revolution"
desc = "The industrial revolution has begun in our country."
date = { day = 1 month = januar year = 1836 }
offset = 1
deathdate = { day = 30 month = december year = 1920 }
action_a = {
name = "Great!"
command = { type = pop_consciousness which = capitalists value = 1 }
command = { type = pop_consciousness which = clerks value = 1 }
command = { type = pop_consciousness which = craftsmen value = 1 }
command = { type = pop_militancy which = craftsmen value = 1 }
command = { type = pop_militancy which = labourers value = 1 }
command = { type = gain_tech which = 3001 } #Private Banks
command = { type = gain_tech which = 3301 } #Freedom of Trade
command = { type = gain_tech which = 4001 } #Classicism & Early Romaticism
command = { type = gain_tech which = 4401 } #Introspectionism
command = { type = gain_tech which = 5001 } #Water-wheel Power
command = { type = gain_tech which = 5101 } #Publishing Industry
command = { type = gain_tech which = 5201 } #Mechanized Mining
}
}
[/color]