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

Vharzul

General
80 Badges
Jul 9, 2002
1.785
0
Visit site
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Distant Stars
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Distant Stars Pre-Order
  • Cities: Skylines - Parklife
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: Jade Dragon
  • Europa Universalis IV: Dharma
  • Age of Wonders III
  • Stellaris: Synthetic Dawn
  • Hearts of Iron IV: Death or Dishonor
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris - Path to Destruction bundle
  • Hearts of Iron IV: Together for Victory
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Stellaris: Federations
  • Hearts of Iron 4: Arms Against Tyranny
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Europa Universalis 4: Emperor
  • Battle for Bosporus
  • Crusader Kings III: Royal Edition
  • Crusader Kings III
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: La Resistance
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Imperator: Rome Sign Up
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome
  • Europa Universalis IV: Golden Century
  • Crusader Kings II: Holy Fury
  • Stellaris: Megacorp
  • Europa Universalis IV
  • Victoria 2
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
Normaly im good at scripting in any of the Paradox games but im lost on this lol ahd want to get playing this this, im doing a culture conversion file, the only problem is the stupid trigger :( wont work haha, cant load into a scenario is what the problem is.

So whats wrong here for the conditions etc, the principal plan was if a province that the Ruler has under his demesne and its not his culture then, the event would fire after so many xxx mount of day's thierbay converting that culture to the Ruler culture, also wanted it so that only the 3 big religions could do it as youll see below:

Code:
#########################################
# Mass-scale Culture Conversions   # by KonigMaximilian	#
#########################################
province_event = {       #Culture
	id = 9008

	picture = "event_claim"

	trigger = {
		condition = {
			type = or
			condition = {
				type = and
		condition = { type = ruler_religion value = Catholic }
		condition = { type = ruler_religion value = Orthodox }
		condition = { type = ruler_religion value = Muslim }
		}
		condition = {
			type = and
			condition = { type = from condition = { type = same_culture } }
			condition = { type = to condition = { type = not value = { type = same_culture } } }
	}
 
Last edited:
I suggest you switch "and" and "or" in the conditions. Because it now seems to me that the conditions are "Ruler is Catholic, Orthodox and Moslem" or "From province is different in culture from To province".

Also I think this should be province_x_province event, not province_event and I think that means you need to have froms and tos in ruler religion checks too.
 
im doing it as a separet event file because I can then test it better lol....

oh as a side note, ive now managed to make the even work, done trigger tries with verius Dukes or Kings etc, and its changes the none culture of your province to your leaders culture, and it works only if that province hs the same religion as you, so an extra bonus I just have to add a fiew modifiers in if i can hehe.
 
Last edited: