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

MRAKoris

Vexilla Regis Prodeunt Inferni
22 Badges
Oct 29, 2003
796
0
  • Crusader Kings Complete
  • 500k Club
  • Crusader Kings III
  • Deus Vult
  • Crusader Kings II
  • Crusader Kings II: Holy Knight (pre-order)
  • Crusader Kings II: Way of Life
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Holy Fury
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
  • Europa Universalis III
I wonder how these two conditions work

Code:
	trigger = { 
		condition = { 
			type = province
			value = 289
		}
		condition = { 
			type = year value = 1067 
		}
		condition = {
			type = not
			value = { type = year value = 1308 }
		}
	}

	mean_time_to_happen = {
		months = 1
	}

Does this year value = 1067 mean that the event will fire in 1067 or at any date greater than 1067, say in 1070.

And does this type = not value = { type = year value = 1308 } mean that the event will not fire at any date which is equal or greater than 1308?

What I am trying to understand is - if I put such an event and start a 1187 campaign, will the first time condition work? AND if I put such an event and start a 1337 campaign, will the second time condition work?

Help will be very much appreciated.
 
I wonder how these two conditions work

Code:
	trigger = { 
		condition = { 
			type = province
			value = 289
		}
		condition = { 
			type = year value = 1067 
		}
		condition = {
			type = not
			value = { type = year value = 1308 }
		}
	}

	mean_time_to_happen = {
		months = 1
	}

Does this year value = 1067 mean that the event will fire in 1067 or at any date greater than 1067, say in 1070.

It means it will fire from 1067 onwards

And does this type = not value = { type = year value = 1308 } mean that the event will not fire at any date which is equal or greater than 1308?

Correct

What I am trying to understand is - if I put such an event and start a 1187 campaign, will the first time condition work? AND if I put such an event and start a 1337 campaign, will the second time condition work?

Help will be very much appreciated.

It doesn't matter when you start the game, the conditions will work. Just take a look in Mongol_invasions_events.txt, there you can find similar conditions.
 
Wow! That was fast! Thank you a bunch:)