• 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.
Wrong:
Code:
condition = { type = value = { type = diplomatic value = 5 } }
or
condition = { type = value = { type = martial value = 5 } }
or
condition = { type = value = { type = intrigue value = 5 } }
or
condition = { type = value = { type = stewardship value = 5 } }
Right (yellow = inserted, red = deleted):
Code:
	[COLOR="Yellow"]condition = { type = or [/COLOR]
		condition = { type = [COLOR="Yellow"]not[/COLOR] value = { type = diplomacy value = 5 } } [COLOR="Red"]or[/COLOR]
		condition = { type = [COLOR="Yellow"]not[/COLOR] value = { type = martial value = 5 } } [COLOR="Red"]or[/COLOR]
		condition = { type = [COLOR="Yellow"]not[/COLOR] value = { type = intrigue value = 5 } } [COLOR="Red"]or[/COLOR]
		condition = { type = [COLOR="Yellow"]not[/COLOR] value = { type = stewardship value = 5 } } [COLOR="Red"]or[/COLOR]
		[COLOR="Yellow"]}[/COLOR]
Just compare the two to see your errors.