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

ADukes

Major
Apr 16, 2007
782
0
www.madminutegames.com
Wrong:
Code:
	trigger = {

		technology = 3390
		technology = 15500
		NOT = {
			is_tech_active = 7050
		}

		OR = {    

		technology = 12140
		technology = 15500

		NOT = {
			is_tech_active = 7050
		}
	}


	}


Correct:
Code:
	trigger = {
		OR = {
			technology = 3390
			technology = 12140
			}
		technology = 15500
		NOT = { is_tech_active = 7050 }
		}
 
Upvote 0
And for the events 8012 and 8013

8012 correct:
Code:
	trigger = {
		OR = {
			technology = 3180
			technology = 3240
			technology = 3300
		}
		technology = 5540
		NOT = { is_tech_active = 7200 }
		}

8013 correct:
Code:
	trigger = {
		OR = {
			technology = 3060
			technology = 3120
			technology = 3450
		}
		technology = 5540
		NOT = { is_tech_active = 7210 }
		}