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

Sergeant
Jul 27, 2005
69
0
Hi,
I'am working for a mod that make it possible for Austria to rekonstruct the HRE.
So, I want to add some provinces for the HRE, when rekonstructed, per events to nationalprovinces, Belgium, or some frence and italian provinces, so that the HRE can claim for it, but I dont know how to do. What are the modifiers to do ?
 

Taylor

Field Marshal
99 Badges
Feb 17, 2006
2.960
5.227
  • War of the Roses
  • March of the Eagles
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Sword of the Stars
  • Sword of the Stars II
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Magicka
  • 200k Club
  • 500k Club
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Magicka: Wizard Wars Founder Wizard
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Magicka 2
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Stellaris: Nemesis
  • Europa Universalis III
  • Cities in Motion 2
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Deus Vult
  • Cities in Motion
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • Heir to the Throne
Jounk35 said:
Hi,
I'am working for a mod that make it possible for Austria to rekonstruct the HRE.
So, I want to add some provinces for the HRE, when rekonstructed, per events to nationalprovinces, Belgium, or some frence and italian provinces, so that the HRE can claim for it, but I dont know how to do. What are the modifiers to do ?

I guess it would be like this:

Code:
event = {
	id = 1532
	random = no
	country = AUS

	trigger = {
	        #put some triggers here
	}

	name = "Austria claims the HRE"
	desc = "blablabla"
	
	date = { day = 1 month = january year = 1836 }
	offset = 30 #or something
	deathdate = { day = 30 month = december year = 1920 } #whatever

	action_a = {
		name = "no thanks"
	}
	action_b = {
		name = "yes!"
		command = { type = addcore which = 290 } #Brussel
                command = { type = addcore which = 291 } #Hasselt
		#(etc.)
	}
}
 

unmerged(46856)

Sergeant
Jul 27, 2005
69
0
Okay, thanks,

I make it this way:
1. Win war against Preussen in 1866
2. Claim as new leader of german luage and turn Preussen neutal.
3. Rekonstruct Westfalia ans Rhineland
4. Went to Papst in Roma OR
Liberate Papst.
Proglamate the New Roman Empire german Nation. Like german unifikation all german nations, expect Preussen, will unite.
5.) (not in code) As NREGN claim in 1900 the Westprovinces in Belgium and France.
6.) Graf Taeffe reforms.
7.) Belgium Terrorist Assasasination the Hier of the NREGN in 1910, so if the NREGN attaks Belgium the BB will grown up dramaticly and other Majorpowers will fight the NREGN. The graet war beginns.
Code:
#########################################################################
#  Der Sieg ist Unser
#########################################################################
event = {
	id = 1533
	random = no
	country = AUS

	picture = 4632

	trigger = {
		control = { province = 342 data = AUS } # Berlin
	}

	name = "EVT_1533_NAME"
	desc = "EVT_1533_DESC"
	style = 0

	date = { day = 15 month = january year = 1866 }
	offset = 7
	deathdate = { day = 30 month = december year = 1920 }

	action_a = {
		name = "ACTIONNAME1533A" # Alles beim Alten belassen!
		command = { type = prestige value = 100 }
		command = { type = peace which = PRU value = 0 }
		command = { type = badboy value = -30 }
		command = { type = relation  which = FRA  value = 25 }
		command = { type = relation  which = RUS  value = 75 }
		command = { type = sleepevent which = 1535 } # AUS
		command = { type = sleepevent which = 1536 } # AUS
	}
	action_b = {
		name = "ACTIONNAME1533A" # Preussens Neutralität verlangen!
		command = { type = prestige value = 200 }
		command = { type = peace which = PRU value = 0 }
		command = { type = badboy value = 10 }
		command = { type = trigger which = 4642 }
		command = { type = addcore which = 294 }
		command = { type = addcore which = 354 }
		command = { type = addcore which = 355 }
		command = { type = addcore which = 268 }
		command = { type = addcore which = 266 }
		command = { type = addcore which = 293 }
		command = { type = addcore which = 356 }
		command = { type = addcore which = 778 }
		command = { type = addcore which = 779 }
		command = { type = addcore which = 780 }
		command = { type = addcore which = 776 }
		command = { type = addcore which = 783 }
		command = { type = addcore which = 784 }
		command = { type = addcore which = 785 }
		command = { type = addcore which = 789 }
		command = { type = addcore which = 798 }
		command = { type = addcore which = 797 }
		command = { type = addcore which = 799 }
		command = { type = addcore which = 836 }
		command = { type = addcore which = 832 }
		command = { type = addcore which = 834 }
		command = { type = addcore which = 835 }
		command = { type = addcore which = 833 }
		command = { type = addcore which = 786 }
		command = { type = addcore which = 800 }
		command = { type = addcore which = 801 }
		command = { type = addcore which = 802 }
		command = { type = addcore which = 804 }
		command = { type = addcore which = 868 }
		command = { type = addcore which = 867 }
		command = { type = addcore which = 865 }
		command = { type = addcore which = 866 }
		command = { type = addcore which = 792 }
		command = { type = addcore which = 791 }
		command = { type = addcore which = 788 }
		command = { type = addcore which = 267 }
		command = { type = addcore which = 793 }
		command = { type = addcore which = 790 }
		command = { type = addcore which = 796 }
		command = { type = addcore which = 794 }
		command = { type = addcore which = 795 }
		command = { type = addcore which = 264 }
		command = { type = addcore which = 759 }
		command = { type = addcore which = 758 }
		command = { type = addcore which = 360 }
		command = { type = addcore which = 296 }
		command = { type = addcore which = 295 }
		command = { type = addcore which = 302 }
		command = { type = addcore which = 301 }
		command = { type = addcore which = 298 }
		command = { type = addcore which = 303 }
		command = { type = addcore which = 352 }
		command = { type = addcore which = 357 }
		command = { type = addcore which = 358 }
		command = { type = addcore which = 353 }
		command = { type = addcore which = 335 }
		command = { type = addcore which = 349 }
		command = { type = addcore which = 334 }
		command = { type = addcore which = 305 }
		command = { type = addcore which = 333 }
		command = { type = addcore which = 304 }
		command = { type = addcore which = 299 }
		command = { type = addcore which = 297 }
		command = { type = addcore which = 300 }
		command = { type = addcore which = 787 }
		command = { type = addcore which = 863 }
		command = { type = addcore which = 864 }
		command = { type = addcore which = 869 }
		command = { type = sleepevent which = 1535 } # AUS
	}
	action_c = {
		name = "ACTIONNAME1533B" # Preussen aus dem Deutschen Bund ausschliessen!
		command = { type = prestige value = 400 }
		command = { type = peace which = PRU value = 0 }
		command = { type = badboy value = 50 }
		command = { type = relation  which = FRA  value = -25 }
		command = { type = relation  which = RUS  value = -25 }
		command = { type = relation  which = ENG  value = -25 }
		command = { type = trigger which = 4641 }
		command = { type = addcore which = 294 }
		command = { type = addcore which = 354 }
		command = { type = addcore which = 355 }
		command = { type = addcore which = 268 }
		command = { type = addcore which = 266 }
		command = { type = addcore which = 293 }
		command = { type = addcore which = 356 }
		command = { type = addcore which = 778 }
		command = { type = addcore which = 779 }
		command = { type = addcore which = 780 }
		command = { type = addcore which = 776 }
		command = { type = addcore which = 783 }
		command = { type = addcore which = 784 }
		command = { type = addcore which = 785 }
		command = { type = addcore which = 789 }
		command = { type = addcore which = 798 }
		command = { type = addcore which = 797 }
		command = { type = addcore which = 799 }
		command = { type = addcore which = 836 }
		command = { type = addcore which = 832 }
		command = { type = addcore which = 834 }
		command = { type = addcore which = 835 }
		command = { type = addcore which = 833 }
		command = { type = addcore which = 786 }
		command = { type = addcore which = 800 }
		command = { type = addcore which = 801 }
		command = { type = addcore which = 802 }
		command = { type = addcore which = 804 }
		command = { type = addcore which = 868 }
		command = { type = addcore which = 867 }
		command = { type = addcore which = 865 }
		command = { type = addcore which = 866 }
		command = { type = addcore which = 792 }
		command = { type = addcore which = 791 }
		command = { type = addcore which = 788 }
		command = { type = addcore which = 267 }
		command = { type = addcore which = 793 }
		command = { type = addcore which = 790 }
		command = { type = addcore which = 796 }
		command = { type = addcore which = 794 }
		command = { type = addcore which = 795 }
		command = { type = addcore which = 264 }
		command = { type = addcore which = 759 }
		command = { type = addcore which = 758 }
		command = { type = addcore which = 360 }
		command = { type = addcore which = 296 }
		command = { type = addcore which = 295 }
		command = { type = addcore which = 302 }
		command = { type = addcore which = 301 }
		command = { type = addcore which = 298 }
		command = { type = addcore which = 303 }
		command = { type = addcore which = 352 }
		command = { type = addcore which = 357 }
		command = { type = addcore which = 358 }
		command = { type = addcore which = 353 }
		command = { type = addcore which = 335 }
		command = { type = addcore which = 349 }
		command = { type = addcore which = 334 }
		command = { type = addcore which = 305 }
		command = { type = addcore which = 333 }
		command = { type = addcore which = 304 }
		command = { type = addcore which = 299 }
		command = { type = addcore which = 297 }
		command = { type = addcore which = 300 }
		command = { type = addcore which = 787 }
		command = { type = addcore which = 863 }
		command = { type = addcore which = 864 }
		command = { type = addcore which = 869 }
	}
}
#########################################################################
#  Rekonstruktion des Rheinlands und Westfalens
#########################################################################
event = {
	id = 1534
	random = no
	country = AUS

	trigger = {
		ai  =  no
		not = { exists = U00 }
		not = { exists = U01 }
		control = { province = 266 data = AUS }
		control = { province = 268 data = AUS }
		control = { province = 294 data = AUS }
		control = { province = 354 data = AUS }
		control = { province = 355 data = AUS }
		control = { province = 293 data = AUS }
		control = { province = 356 data = AUS }
		control = { province = 776 data = AUS }
		control = { province = 778 data = AUS }
		control = { province = 779 data = AUS }
	}

	name = "EVT_1534_NAME"
	desc = "EVT_1534_DESC"
	style = 0

	date = { day = 1 month = january year = 1867 }
	offset = 30
	deathdate = { day = 30 month = december year = 1920 }

	action_a = {
		name = "ACTIONNAME1534A" # Gewähren!
		command = { type = pop_consciousness which = south_german value = -2 }
		command = { type = pop_militancy which = south_german value = -1 }
		command = { type = pop_consciousness which = north_german value = -3 }
		command = { type = pop_militancy which = north_german value = -3 }
		command = { type = independence which = U00 value = 1 }
		command = { type = independence which = U01 value = 1 }
	}
	action_b = {
		name = "ACTIONNAME1534B" # Auf keinen Fall!
		command = { type = pop_consciousness which = south_german value = 1 }
		command = { type = pop_militancy which = south_german value = 1 }
		command = { type = pop_consciousness which = north_german value = 3 }
		command = { type = pop_militancy which = north_german value = 3 }
	}
}
#########################################################################
#  Holy Roman Empire
#########################################################################
event = {
	id = 1535
	random = no
	country = AUS

	picture = 4632

	trigger = {
		ai  =  no
		not = { exists = ITA }
		event = 4641
	}

	name = "EVT_1535_NAME"
	desc = "EVT_1535_DESC"
	style = 0

	date = { day = 1 month = june year = 1870 }
	offset = 10
	deathdate = { day = 30 month = december year = 1920 }

	action_a = {
		name = "ACTIONNAME1535A" # Ein Hoch auf das Neue römische Reich!
		command = { type = pop_consciousness which = south_german value = -3 }
		command = { type = pop_militancy which = south_german value = -2 }
		command = { type = pop_consciousness which = north_german value = -2 }
		command = { type = pop_militancy which = north_german value = -1 }
		command = { type = pop_consciousness which = north_italian value = 1 }
		command = { type = pop_militancy which = north_italian value = 2 }
		command = { type = pop_militancy which = czech value = 1 }
		command = { type = pop_militancy which = slovak value = 1 }
		command = { type = pop_militancy which = croat value = 1 }
		command = { type = pop_militancy which = hungarian value = 1 }
		command = { type = prestige value = 500 }
		command = { type = badboy value = 20 }
		command = { type = relation  which = PAP  value = 200 }
		command = { type = relation  which = RUS  value = -25 }
		command = { type = relation  which = FRA  value = -100 }
		command = { type = relation  which = ENG  value = -25 }
		command = { type = relation  which = TUR  value = -100 }
		command = { type = relation  which = SPA  value = 25 }
		command = { type = relation  which = SIC  value = -50 }
		command = { type = country which = FRM }
		command = { type = sleepevent which = 1536 } # AUS
	}
	action_b = {
		name = "ACTIONNAME1535B" # Nein! Das Heilige römische Reich ist und bleibt Geschichte!
		command = { type = pop_consciousness which = south_german value = 2 }
		command = { type = pop_militancy which = south_german value = 1 }
		command = { type = pop_consciousness which = north_german value = 1 }
		command = { type = pop_militancy which = north_italian value = -1 }
		command = { type = prestige value = -100 }
		command = { type = badboy value = -20 }
		command = { type = relation  which = PAP  value = -100 }
		command = { type = relation  which = RUS  value = 25 }
		command = { type = relation  which = FRA  value = 100 }
		command = { type = relation  which = ENG  value = 25 }
		command = { type = relation  which = TUR  value = 100 }
		command = { type = relation  which = SPA  value = -25 }
		command = { type = relation  which = SIC  value = 50 }
		command = { type = sleepevent which = 1536 } # AUS
	}
}
#########################################################################
#  Italien arrestiert Papst
#########################################################################
event = {
	id = 1536
	random = no
	country = AUS

	trigger = {
		ai  =  no
		exists = ITA
		event = 4641
	}

	name = "EVT_1536_NAME"
	desc = "EVT_1536_DESC"
	style = 0

	date = { day = 1 month = june year = 1870 }
	offset = 10
	deathdate = { day = 30 month = december year = 1920 }

	action_a = {
		name = "ACTIONNAME1536A" # Auf nach Rom!
		command = { type = pop_consciousness which = south_german value = -2 }
		command = { type = pop_militancy which = south_german value = -2 }
		command = { type = pop_consciousness which = north_german value = -1 }
		command = { type = pop_militancy which = north_german value = -1 }
		command = { type = pop_consciousness which = north_italian value = 1 }
		command = { type = pop_militancy which = north_italian value = 2 }
		command = { type = prestige value = 10 }
		command = { type = relation  which = FRA  value = -10 }
		command = { type = war which = ITA }
	}
	action_b = {
		name = "ACTIONNAME1536B" # Nur ein alter Mann!
		command = { type = pop_militancy which = north_italian value = -1 }
		command = { type = prestige value = -100 }
		command = { type = relation  which = FRA  value = 50 }
		command = { type = relation  which = ITA  value = 100 }
		command = { type = sleepevent which = 1536 } # AUS
	}
}
#########################################################################
#  Papst befreit
#########################################################################
event = {
	id = 1537
	random = no
	country = AUS

	picture = 4632

	trigger = {
		control = { province = 855 data = AUS } # Roma
	}

	name = "EVT_1537_NAME"
	desc = "EVT_1537_DESC"
	style = 0

	date = { day = 1 month = june year = 1870 }
	offset = 10
	deathdate = { day = 30 month = december year = 1920 }

	action_a = {
		name = "ACTIONNAME1535A" # Ein Hoch auf das Neue römische Reich!
		command = { type = peace which = ITA value = 0 }
		command = { type = pop_consciousness which = south_german value = -3 }
		command = { type = pop_militancy which = south_german value = -2 }
		command = { type = pop_consciousness which = north_german value = -2 }
		command = { type = pop_militancy which = north_german value = -1 }
		command = { type = pop_consciousness which = north_italian value = 1 }
		command = { type = pop_militancy which = north_italian value = 2 }
		command = { type = pop_militancy which = czech value = 1 }
		command = { type = pop_militancy which = slovak value = 1 }
		command = { type = pop_militancy which = croat value = 1 }
		command = { type = pop_militancy which = hungarian value = 1 }
		command = { type = prestige value = 600 }
		command = { type = badboy value = 20 }
		command = { type = relation  which = RUS  value = -25 }
		command = { type = relation  which = FRA  value = -50 }
		command = { type = relation  which = ENG  value = -25 }
		command = { type = relation  which = TUR  value = -100 }
		command = { type = relation  which = SPA  value = 50 }
		command = { type = country which = FRM }
		command = { type = sleepevent which = 1535 } # AUS
	}
}
 

Taylor

Field Marshal
99 Badges
Feb 17, 2006
2.960
5.227
  • War of the Roses
  • March of the Eagles
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Sword of the Stars
  • Sword of the Stars II
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Magicka
  • 200k Club
  • 500k Club
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Magicka: Wizard Wars Founder Wizard
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Magicka 2
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Cossacks
  • Stellaris: Nemesis
  • Europa Universalis III
  • Cities in Motion 2
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Deus Vult
  • Cities in Motion
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • Heir to the Throne
Wow, that looks like a lot of work! When will you release the mod?
 

unmerged(46856)

Sergeant
Jul 27, 2005
69
0
No I've not got revolutions, because I hate to pay per C-Card in Internet.
But when I release, everyboby can feel free to use the modifided files.

I've played a testgame, 4 hours. It seems to work. I became the Emporer of the NREGN by defeat prussia (1866) and liberate the pope in 1869.
Instandly Russia declared war. The war last till 1873 and ended with withe peace.
Now I'll test the last events in later game that leades to the great war.
 

OHgamer

Victoria's Plastic Surgeon
38 Badges
Jan 28, 2003
18.057
650
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Common Sense
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - Snowfall
  • Europa Universalis IV: Mare Nostrum
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: Together for Victory
  • Europa Universalis IV: Mandate of Heaven
  • Victoria 2 Beta
  • Hearts of Iron IV: Death or Dishonor
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Rule Britannia
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: La Resistance
  • Battle for Bosporus
  • Victoria 3 Sign Up
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron III
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Europa Universalis III
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • 500k Club
  • Cities: Skylines
  • Europa Universalis III: Collection
  • Europa Universalis IV: El Dorado
  • Hearts of Iron II: Beta
events that work in non-Revolutions Victoria will generally work fine in Revolutions. It's events using commands/codes that are in Revolutions that can not be used in pre-Revolutions Victoria that causes issues.
 

unmerged(46856)

Sergeant
Jul 27, 2005
69
0
Look at my "Neues römische Reich deutscher Nation" in 1875


As u see, Prussia is totaly isolatet. The most problem is the inner Security, much nort german People dont like the new Kaiser. And Russia.
In 1885 there comes a event. Graf Taeffe reform the sozial politics, so the most problems will lift.
I will release today in a new thread.