• 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(10370)

Do not touch the trim!
Jul 25, 2002
698
0
Visit site
I tried this before after the original thread about it. It was great. All those South Germans became the majority and I had a titanic army. I had to sattelite Venice, Lombardia & Croatia to stop a lot of revolting (I nevilled to keep a port on the med). It was great fun. I spanked everybody. In fact, its the only time I ever was able to whip France in 1.02. Damn I smashed France to bits.
 

unmerged(25703)

Private
Feb 12, 2004
22
0
Hmm, ok, I was able to annex every german minor until June 1851 who was not ruled by a democratic government, I bought a province of Austria and was able to satellite Hungary in 1848. However, there was no Popular Unification.
Can someone give me a hint what to do?
Is it possible to ask in the console if all conditions are fullfilled(they should be, there is no absolute monarchy in whole germany)?
 

Memnon

Czar of Texas
4 Badges
Jan 2, 2004
3.385
200
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Victoria 3 Sign Up
KyBorg said:
Hmm, ok, I was able to annex every german minor until June 1851 who was not ruled by a democratic government, I bought a province of Austria and was able to satellite Hungary in 1848. However, there was no Popular Unification.
Can someone give me a hint what to do?
Is it possible to ask in the console if all conditions are fullfilled(they should be, there is no absolute monarchy in whole germany)?

Perhaps Hungary can't be a satellite. Maybe you have to break your alliance with it. Are you sure none of the German minors are monarchies? It's really easy to let one slip throgh. Also are you sure you are not a monarchy? Stupid question, but I had to ask.

Maybe you need to give it more time. The deathdate for the event isn't until December 30 1851, so maybe you need to wait a little longer. Sorry I can't give you a definitive answer. I've never done it myself, only looked at the event file.
 

unmerged(25703)

Private
Feb 12, 2004
22
0
Code:
#########################################################################
#  Popular Unification of Germany
#########################################################################
event = {
	id = 4612
	random = no
	country = PRU

	trigger = {
		NOT = { constitution = { country = ANH type = monarchy } }
		NOT = { constitution = { country = AUS type = monarchy } }
		NOT = { constitution = { country = BAD type = monarchy } }
		NOT = { constitution = { country = BAY type = monarchy } }
		NOT = { constitution = { country = BRA type = monarchy } }
		NOT = { constitution = { country = BRE type = monarchy } }
		NOT = { constitution = { country = COB type = monarchy } }
		NOT = { constitution = { country = FRM type = monarchy } }
		NOT = { constitution = { country = FRM type = monarchy } }
		NOT = { constitution = { country = HAM type = monarchy } }
		NOT = { constitution = { country = HAN type = monarchy } }
		NOT = { constitution = { country = HED type = monarchy } }
		NOT = { constitution = { country = HEK type = monarchy } }
		NOT = { constitution = { country = HLS type = monarchy } }
		NOT = { constitution = { country = LIP type = monarchy } }
		NOT = { constitution = { country = LUB type = monarchy } }
		NOT = { constitution = { country = MEC type = monarchy } }
		NOT = { constitution = { country = MEI type = monarchy } }
		NOT = { constitution = { country = NAS type = monarchy } }
		NOT = { constitution = { country = NGF type = monarchy } }
		NOT = { constitution = { country = SGF type = monarchy } }
		NOT = { constitution = { country = OLD type = monarchy } }
		NOT = { constitution = { country = PRU type = monarchy } }
		NOT = { constitution = { country = SAX type = monarchy } }
		NOT = { constitution = { country = WEI type = monarchy } }
		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 }
	}
}
My government is a democracy, bavaria, hannover and Saxe-Weimar are democracies, Oldenburg, Mecklenburg, Bremen and saxony are satellites and democratic, austria has a constitutional monarchy(I edited the savegame to make them democratic, the event still did not fire).
I loaded the game seven times and played from June to February. No Popular Unification :(

I dont know. If i type "event 4612" in the console I become Germany, but Austria and the minors are not affected.

Maybe I'll try it again tomorrow.
 

unmerged(25703)

Private
Feb 12, 2004
22
0
I played a little bit with prussia.txt.
It seems that at least in 1.02 the popular unification event does not seem to work.

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 are no monarchies, it is impossible.

Isn't it? Has anyone ever suceeded in the Popular Unification without console or save-game-editing?

The correct code for the event is possibly:
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 }
	}
}

And with this code I got a unified big-germany at last :)