Ive been sitting all morning trying to figure out why these two events dont work. They work individually, if I delete one of them, the game runs, and the other way. But when I put them together, it crashes!
Any clues?
Any clues?
Code:
[COLOR=Yellow]## The start of the national socialist five year plan ##
event = {
id = 94061
country = SWE
picture = "Industry"
date = { day = 13 month = january year = 1936 }
name = "The start of the national socialst five year plan"
desc = "x"
action_a = {
name = "Start the plan!"
command = { type = supplies value = -1000 }
}
}
## Protests from the neighbours ##
event = {
id = 94062
country = SWE
picture = "bolshevik_troops"
date = { day = 15 month = january year = 1936 }
name = "Nordic delegation arrives."
desc = "x"
action_a = {
name = "Fear us!"
command = { type = relation which = NOR value = -100 }
command = { type = relation which = DEN value = -100 }
command = { type = relation which = FIN value = -100 }
command = { type = domestic which = interventionism value = 4 }
command = { type = end_non_aggression which = SWE where = DEN }
command = { type = end_non_aggression which = SWE where = FIN }
command = { type = end_non_aggression which = SWE where = NOR }
}
}[/COLOR]