• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

FrosT37

Field Marshal
51 Badges
Sep 8, 2001
2.607
201
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV Sign-up
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Tyranny: Archon Edition
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Stellaris: Synthetic Dawn
  • Stellaris
  • Crusader Kings II: Jade Dragon
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Europa Universalis IV: Golden Century
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Europa Universalis IV: Wealth of Nations
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
This event doesn't seem to work... It's always ignored when all triggers are met, even if I try to do it with the "event" command in the console :(

I wanted to give Scotland its own act of union...

Code:
[color=white]
#The Act of Union#
event = {

	id = 15015
	trigger = {
		owned = {
			province = 247
			data = -1
			} 
		NOT = {
			exists = ENG
			}
		}
	random = no
	country = SCO
	name = "The Act of Union"
	desc = "no description available"
	style = 1

	date = { day = 1 month = january year = 1419 }
	offset = 30
	deathdate = { day = 1 month = january year = 1820 }

	action_a ={
		name = "The island is united"
		command = { type = stability value = 1 }
		command = { type = flag which = 6 }
		command = { type = domestic which = CENTRALIZATION value = 1 }
		command = { type = add_countryculture which = anglosaxon }
		command = { type = addcore which = 243 }
		command = { type = addcore which = 244 }
		command = { type = addcore which = 245 }
		command = { type = addcore which = 246 }
		command = { type = addcore which = 247 }
		command = { type = addcore which = 248 }
		command = { type = addcore which = 249 }
		command = { type = addcore which = 250 }
	}
}
[/color]

I've tried without the flag command, didn't work either

Any idea?