• 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.

MattyG

Attention is love.
15 Badges
Mar 23, 2003
3.690
1
  • Crusader Kings II: The Old Gods
  • Deus Vult
  • Diplomacy
  • Europa Universalis III
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis III Complete
  • 500k Club
  • Europa Universalis III: Collection
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Rights of Man
  • Europa Universalis IV: Rule Britannia
  • Crusader Kings III
  • Europa Universalis 4: Emperor
Here they are.
 
Last edited:
All right, here you go. :)
 
MichaelM,

Thanks for doing this. An odd replicated error, though.

Here is the event for cores that I sent you

Code:
event = {
	id = 900001
	random = no
	province = 1
	trigger = {
		control = { province = 1 data = -1 }
		NOT = { badboy = 4 }
		NOT = { core = { province = 1 data = -1 } }
		NOT = { flag = Sitka_core }
		OR = {
			AND = {
				religion = sunni
				provincereligion = { province = 1 data = sunni }
			}
			AND = {
				religion = shiite
				provincereligion = { province = 1 data = shiite }
			}
			AND = {
				religion = catholic
				provincereligion = { province = 1 data = catholic }
			}
			AND = {
				religion = orthodox
				provincereligion = { province = 1 data = orthodox }
			}
			AND = {
				religion = reformed
				provincereligion = { province = 1 data = reformed }
			}
			AND = {
				religion = protestant
				provincereligion = { province = 1 data = protestant }
			}
			AND = {
				religion = buddhism
				provincereligion = { province = 1 data = buddhism }
			}
			AND = {
				religion = hinduism
				provincereligion = { province = 1 data = hinduism }
			}
			AND = {
				religion = confucianism
				provincereligion = { province = 1 data = confucianism }
			}
		}
		NOT = { domestic = { type = serfdom value = 9 } }  
		NOT = { domestic = { type = aristocracy value = 9 } }
		domestic = { type = innovative value = 3 } 

		#specific conditions

	}
	name = "Our Rule Accepted in Sitka"
	desc = "With the passing of time and careful administration, our rule in Sitka has come to be generally recognized and accepted not only by other nations, but the local populace as well."
	date = { year = 1419 }
	offset = 6000
	deathdate = { year = 1820 }

	action_a = {
		name = "It was inevitable"
		command = { type = addcore which = 1 }
		command = { type = setflag which = Sitka_core }
	}
}

But here is the version in your files;


Code:
event = {
	id = 900001
	random = no
	province = 1
	trigger = {
		control = { province = 1 data = -1 }
		NOT = { badboy = 4 }
		NOT = { core = { province = 1 data = -1 } }
		NOT = { flag = sitka_core }
		OR = {
			AND = {
				religion = sunni
				provincereligion = { province = 1 data = sunni }
			}
			AND = {
				religion = shiite
				provincereligion = { province = 1 data = shiite }
			}
			AND = {
				religion = catholic
				provincereligion = { province = 1 data = catholic }
			}
			AND = {
				religion = reformed
				provincereligion = { province = 1 data = reformed }
			}
			AND = {
				religion = protestant
				provincereligion = { province = 1 data = protestant }
			}
			AND = {
				religion = buddhism
				provincereligion = { province = 1 data = buddhism }
			}
			AND = {
				religion = hinduism
				provincereligion = { province = 1 data = hinduism }
			}
			AND = {
				religion = confucianism
				provincereligion = { province = 1 data = confucianism }
			}
		}
		NOT = { domestic = { type = serfdom value = 9 } }  
		NOT = { domestic = { type = aristocracy value = 9 } }
		domestic = { type = innovative value = 3 } 

		#specific conditions

	}
	name = "Our Rule Accepted in Sitka"
	desc = "With the passing of time and careful administration, our rule in Sitka has come to be generally recognized and accepted not only by other nations, but the local populace as well."
	date = { year = 1419 }
	offset = 6000
	deathdate = { year = 1820 }

	action_a = {
		name = "It was inevitable"
		command = { type = addcore which = 1 }
		command = { type = setflag which = sitka_core }
	}
}

Note that in all events the triggers relating to orthodox religion have been deleted. So none of the events will work for orthodox countries.

Can you please check your program and redo?

Matty
 
Oops, you're right. Sorry about that. :eek:o

Here's the updated version of the core events file.
 
MichaelM said:
Oops, you're right. Sorry about that. :eek:o

Here's the updated version of the core events file.


Wow you're quick.

Thank you once again.

Matty