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

unmerged(25703)

Private
Feb 12, 2004
22
0
I played in 1.02 as Prussia trying the "Popular Unification" of Germany. Although whole Germany was democratic/const. the Event didnt fire.

NOT = { constitution = { country = WUR type = monarchy } }

seems to return FALSE if Wuerttemberg does not exist. If this is the only condition, I get PopUn after I release Wuerttemberg.

So all German minors have to exist for the PopUn. this may be Wad for Wuerttemberg, Frankfurt, Bremen... but since it is also a condition that NGF and SGF exist(along with the other minors!) and are no monarchies, it is impossible in 1851.

A possible fix is:
Code:
############################
#  Popular Unification of Germany
############################
event = {
	id = 4612
	random = no
	country = PRU

	trigger = {
	OR = {
		NOT = { exists = WUR }
		NOT = { constitution = { country = WUR type = monarchy } }
	}
	OR = {
		NOT = { exists = ANH }
		NOT = { constitution = { country = ANH type = monarchy } }
	}
	OR = {
		NOT = { exists = AUS }
		NOT = { constitution = { country = AUS type = monarchy } }
	}
	OR = {
		NOT = { exists = BAD }
		NOT = { constitution = { country = BAD type = monarchy } }
	}
	OR = {
		NOT = { exists = BAY }
		NOT = { constitution = { country = BAY type = monarchy } }
	}
	OR = {
		NOT = { exists = BRA }
		NOT = { constitution = { country = BRA type = monarchy } }
	}
	OR = {
		NOT = { exists = BRE }
		NOT = { constitution = { country = BRE type = monarchy } }
	}
	OR = {
		NOT = { exists = COB }
		NOT = { constitution = { country = COB type = monarchy } }
	}
	OR = {
		NOT = { exists = FRM }
		NOT = { constitution = { country = FRM type = monarchy } }
	}
	OR = {
		NOT = { exists = HAM }
		NOT = { constitution = { country = HAM type = monarchy } }
	}
	OR = {
		NOT = { exists = HAN }
		NOT = { constitution = { country = HAN type = monarchy } }
	}
	OR = {
		NOT = { exists = HED }
		NOT = { constitution = { country = HED type = monarchy } }
	}
	OR = {
		NOT = { exists = HEK }
		NOT = { constitution = { country = HEK type = monarchy } }
	}
	OR = {
		NOT = { exists = HLS }
		NOT = { constitution = { country = HLS type = monarchy } }
	}
	OR = {
		NOT = { exists = LIP }
		NOT = { constitution = { country = LIP type = monarchy } }
	}
	OR = {
		NOT = { exists = LUB }
		NOT = { constitution = { country = LUB type = monarchy } }
	}
	OR = {
		NOT = { exists = MEC }
		NOT = { constitution = { country = MEC type = monarchy } }
	}
	OR = {
		NOT = { exists = MEI }
		NOT = { constitution = { country = MEI type = monarchy } }
	}
	OR = {
		NOT = { exists = NAS }
		NOT = { constitution = { country = NAS type = monarchy } }
	}
	OR = {
		NOT = { exists = NGF }
		NOT = { constitution = { country = NGF type = monarchy } }
	}
	OR = {
		NOT = { exists = SGF }
		NOT = { constitution = { country = SGF type = monarchy } }
	}
	OR = {
		NOT = { exists = OLD }
		NOT = { constitution = { country = OLD type = monarchy } }
	}
	NOT = { constitution = { country = PRU type = monarchy } }
	OR = {
		NOT = { exists = SAX }
		NOT = { constitution = { country = SAX type = monarchy } }
	}
	OR = {
		NOT = { exists = WEI }
		NOT = { constitution = { country = WEI type = monarchy } }
	}
	OR = {
		NOT = { exists = WUR }
		NOT = { constitution = { country = WUR type = monarchy } }
	}
	}

	name = "EVT_1509_NAME"
	desc = "EVT_1509_DESC"
	style = 0

	date = { day = 15 month = january year = 1836 }
	offset = 30
	deathdate = { day = 30 month = december year = 1851 }

	action_a = {
		name = "ACCEPT" # Accept
		command = { type = constitution which = democracy }
		command = { type = executive_designation which = parliamentarism }
		command = { type = party_system which = multi_party }
		command = { type = national_value which = equality }
		command = { type = set_ruling_party which = 4600 }
		command = { type = country which = GER }
	}
}
 
Upvote 0