• 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.
Since Brandenburg can be annexed but released as vassals because of HRE events, it is weird to see Ducal Prussia surviving and Brandenburg not able to form Kingdom of Prussia because [ClaimOnPrussia] flag is cleared when Brandenburg disappears... and reappears with rulers that have the right to inherit Ducal Prussia...

It is easy to have some events as a safety of the flag for tests purpose.

Proposal:
Code:
#(1524-1540) Poland claims Ducal Prussia
event = {
	id = 132080 #triggered by POL_258231 B
	random = no
	country = BRA
	name = "EVENTNAME132080" #Poland claims Hohenzollern Prussia
	desc = "EVENTHIST132080"
	#-#

	action_a = {
		name = "ACTIONNAME132080A" #Help Albert!
		command = { type = vassal which = PRU }
		[COLOR=Red]command = { type = alliance which = PRU }
		command = { type = relation which = LIV value = -50 }[/COLOR]
		command = { type = relation which = PRU value = 300 }
		[COLOR=Red]command = { type = relation which = POL value = -200 }
		command = { type = treasury value = 250 } #Help from other german states
		command = { type = INF which = -2 value = 5000 }
		command = { type = CAV which = -2 value = 5000 }
		command = { type = setflag which = [ClaimOnPrussia] }
		command = { type = casusbelli which = POL value = 240 }[/COLOR]
		[COLOR=Yellow]command = { type = trigger which = 132011 } #BRA: Hohenzollern Prussia[/COLOR]
	}
	action_b = {
		name = "ACTIONNAME132080B" #We can't help them now
		command = { type = casusbelli which = POL value = 240 }
		command = { type = relation which = LIV value = 100 }
		command = { type = relation which = PRU value = -50 }
		command = { type = relation which = POL value = 100 }
	}
}
#-#In 1525 during the religious turmoil of the Reformation one of the early converters to the new religion was the Teutonic Orders' Grandmaster from Brandenburg, Albrecht of Hohenzollern. Inspired by Luther he also decides to secularize the land areas under his control, Prussia, into a protestant duchy. However, knowing that this would earn him the eternal enmity of his former Order he had to go for help with its greatest enemy, Poland-Lithuania. However Poland-Lithuania decided to claim his lands instead. Shall we help our family member?

New event:
Code:
#(1524-1540) Hohenzollern Prussia
event = {
	id = 132011 #triggered by BRA_132080 A
	random = no
	country = BRA
	name = "EVENTNAME132011" #Hohenzollern Prussia
	desc = "EVENTHIST132011"
	#-# 

	action_a = {
		name = "OK"
		command = { type = setflag which = [ClaimOnPrussia] }
		command = { type = alliance which = PRU }
		command = { type = relation which = LIV value = -50 }
		command = { type = relation which = POL value = -200 }
		command = { type = treasury value = 250 } #Help from other german states
		command = { type = INF which = -2 value = 5000 }
		command = { type = CAV which = -2 value = 5000 }
		command = { type = casusbelli which = POL value = 240 }
}
EVENTNAME132011;Hohenzollern Prussia;;;;;;;;;;
EVENTHIST132011;As a consequence of the decision of helping Albert, relations between Poland and Brandenburg drop.;;;;;;;;;;

Code:
#(1618) Death of Albrecht Friedrich
#Poland inherits version - modified by YodaMaster
event = {
	id = 132082
	trigger = {
		exists = PRU
	}
	random = no
	country = BRA
	name = "EVENTNAME132082" #Death of Albrecht Friedrich
	desc = "EVENTHIST132082"
	#-#

	date = { day = 1 month = february year = 1618 }

	action_a = {
		name = "ACTIONNAME132082A" #Finally!
		command = { type = relation which = POL value = 100 }
		command = { type = relation which = HAB value = -25 }
		command = { type = relation which = KUR value = -50 }
		command = { type = treasury value = -50 }
		command = { type = stability value = 1 }
		[COLOR=Red]command = { type = setflag which = [ClaimOnPrussia] }[/COLOR]
		command = { type = sleepevent which = 263006 } #PRU: The Fate of Prussia (AI)
		[COLOR=Red]command = { type = dynastic which = PRU }[/COLOR]
		command = { type = dynastic which = POL } #to simulate that Elector as duke of Prussia is Polish vassal
		[COLOR=Red]command = { type = relation which = PRU value = 200 }[/COLOR]
		[COLOR=Yellow]command = { type = trigger which = 132012 } #BRA: Hohenzollern-Brandenburg rule in Prussia[/COLOR]
	}
	action_b = {
		name = "ACTIONNAME132082B" #Keep separate
		command = { type = relation which = PRU value = -100 }
		command = { type = relation which = POL value = 200 }
		command = { type = relation which = HAB value = 25 }
		command = { type = relation which = KUR value = 25 }
	}
}
#-#After years of illness the last Duke of Prussia from the Hohenzollern-Ansbach line, Albrecht Friedrich, died. According to the Treaty of Cracov from 1525, after the Prussian branch of the Hohenzollern family, the lands of the Duchy of Prussia were to be incorporated into Poland. However this was changed with the decision of the Polish Sejm on the 5th of may 1611. The Hohenzollern-Brandenburg branch was therefore allowed to rule the Duchy.

New event:
Code:
#(1618) Hohenzollern-Brandenburg rule in Prussia
event = {
	id = 132012 #triggered by BRA_132082 A
	random = no
	country = BRA
	name = "EVENTNAME132012" #Hohenzollern-Brandenburg rule in Prussia
	desc = "EVENTHIST132012"
	#-#

	action_a = {
		name = "OK"
		command = { type = setflag which = [ClaimOnPrussia] }
		command = { type = dynastic which = PRU }
		command = { type = relation which = PRU value = 200 }
	}
}
EVENTNAME132012;Hohenzollern-Brandenburg rule in Prussia;;;;;;;;;;
EVENTHIST132012;The Hohenzollern-Brandenburg branch is allowed to rule the Duchy.;;;;;;;;;;

Code:
#(1618-1660) Inheritance of Prussia
#Polish event Fate of Prussia means that Poland vassalized Prussia
event = {
	id = 132005
	trigger = {
		[COLOR=Yellow]OR = {[/COLOR]
			flag = [ClaimOnPrussia]
			[COLOR=Yellow]event = 132011 #BRA: Hohenzollern Prussia
			event = 132012 #BRA: Hohenzollern-Brandenburg rule in Prussia
			event = 263004 #PRU: Prussia forms Brandenburg
		}[/COLOR]
		OR = {
			year = 1657
			NOT = { event = 258234 } #POL: The Fate of Prussia
		}
		exists = PRU
	}
	random = no
	country = BRA
	name = "EVENTNAME132005" #Inheritance of Prussia
	desc = "EVENTHIST132005"
	#-#

	date = { day = 3 month = january year = 1618 }
	offset = 30
	deathdate = { day = 1 month = january year = 1660 }

	action_a = {
		name = "ACTIONNAME132005A" #Finally!
		[COLOR=Yellow]command = { type = setflag which = [ClaimOnPrussia] }[/COLOR]
		command = { type = inherit which = PRU }
		command = { type = relation which = POL value = 50 }
		command = { type = relation which = HAB value = -25 }
		command = { type = relation which = SWE value = -25 }
		command = { type = relation which = KUR value = -25 }
		command = { type = addcore which = 289 } #Memel
		command = { type = addcore which = 290 } #Prussia
		command = { type = treasury value = -50 }
		command = { type = relation which = PRU value = 200 }
		command = { type = stability value = 1 }
	}
}
#-#After death of the last Duke of Prussia from the Hohenzollern-Ansbach branch, the Hohenzollern-Brandenburg dynasty was allowed to rule Duchy of Prussia, however still as vassals of the Polish king, who guaranteed liberites of Prussian citizens. Brandenburg Elector could not rise taxes nor station non-Prussian troops on the territory of Prussia without agreement of Prussian Diet. Polish king also had significant inluence on the jurisdiction in Prussia. However during the following years Polish kings agreed to reduce their priviliges. Finally, in exchange for renouncing alliance with Sweden and help against Sweden, Polish king has renounced all his claims on Prussia in Treaty of Welhau in 1657.

Code:
#(1619-1700) Claims on Prussia
event = {
	id = 132007
	trigger = {
		NOT = {
			flag = [ClaimOnPrussia]
		}
		owned = { province = 290 data = -1 } #Prussia
		owned = { province = 289 data = -1 } #Memel
	}
	random = no
	country = BRA
	name = "EVENTNAME132007" #Claims on Prussia
	desc = "EVENTHIST132007"
	#-#

	date = { day = 1 month = january year = 1619 }
	offset = 300
	deathdate = { day = 1 month = june year = 1700 }

	action_a = {
		name = "ACTIONNAME132007A" #Claim Prussia
		[COLOR=Red]command = { type = relation which = POL value = -100 }
		command = { type = relation which = HAB value = -50 }
		command = { type = relation which = KUR value = -50 }[/COLOR]
		command = { type = addcore which = 289 } #Memel
		command = { type = addcore which = 290 } #Prussia
		command = { type = provinceculture which = 290 value = german } #Prussia
		command = { type = treasury value = -50 }
		command = { type = stability value = 1 }
		[COLOR=Red]command = { type = setflag which = [ClaimOnPrussia] }[/COLOR]
		command = { type = sleepevent which = 132005 } #BRA: Inheritance of Prussia
		[COLOR=Yellow]command = { type = trigger which = 132027 } #BRA: Consequence of the claims on Prussia[/COLOR]
	}
	action_b = {
		name = "ACTIONNAME132007B" #Who cares about Prussia
		command = { type = relation which = POL value = 50 }
		command = { type = relation which = HAB value = 25 }
		command = { type = relation which = KUR value = 25 }
	}
}
#-#After death of the last Duke of Prussia from the Hohenzollern-Ansbach branch, the Hohenzollern-Brandenburg wanted to take over Duchy of Prussia. Now, when we control Prussia we can claim it rightfully ours.

New event:
Code:
#(1619-1700) Consequence of the claims on Prussia
event = {
	id = 132027
	random = no
	country = BRA
	name = "EVENTNAME132027" #Consequence of the claims on Prussia
	desc = "EVENTHIST132007"
	#-#

	action_a = {
		name = "OK"
		command = { type = relation which = POL value = -100 }
		command = { type = relation which = HAB value = -50 }
		command = { type = relation which = KUR value = -50 }
		command = { type = setflag which = [ClaimOnPrussia] }
		command = { }
	}
}
EVENTNAME132027;Consequence of the claims on Prussia;;;;;;;;;;
EVENTHIST132007;The Duchy of Prussia is rightfully ours but relations with other countries suffer.;;;;;;;;;;


And finally:
Code:
#(1701-1760) A royal title
#changed by Neuro - modified by YodaMaster and SirCentipede
event = {
	id = 3524
	trigger = {
		OR = {
			owned = { province = 290 data = -1 } #Prussia
			flag = [ClaimOnPrussia]
			[COLOR=Yellow]event = 132011 #BRA: Hohenzollern Prussia
			event = 132012 #BRA: Hohenzollern-Brandenburg rule in Prussia
			event = 263004 #PRU: Prussia forms Brandenburg
			event = 132027 #BRA: Consequence of the claims on Prussia[/COLOR]
		}
		NOT = { exists = PRU } #Ducal Prussia
	}
	random = no
	country = BRA
	name = "EVENTNAME3524" #A royal title
	desc = "EVENTHIST3524"
	#-#

	date = { day = 1 month = january year = 1701 }
	offset = 30
	deathdate = { day = 1 month = january year = 1760 }

	action_a = {
		name = "ACTIONNAME3524A" #The Kingdom of Prussia is born!
		command = { type = addcore which = 289 } #Memel
		command = { type = addcore which = 290 } #Prussia
		command = { type = flagname which = "" }
		command = { type = country which = PRU }
		command = { type = flagname which = "Kingdom" }
		command = { type = setflag which = [PrussiaHRE] }
		command = { type = provinceculture which = 290 value = german } #Prussia
		command = { type = trigger which = 263014 } #PRU: The Kingdom of Prussia
	}
	action_b = {
		name = "ACTIONNAME3524B" #Stay Elector-Prince!
		command = { type = stability value = 2 }
		command = { type = relation which = HAB value = 40 }
		command = { type = removecore which = 289 } #Memel
		command = { type = removecore which = 290 } #Prussia
	}
}
#-#The Brandenburg areas formally belonged to the Holy Roman Empire but the ruling Hohenzollern family of Prussia-Brandenburg had higher aspirations than merely staying electors under the Holy Roman Emperor, a position which by this time had become next to inherited within the powerful Habsburg family. Since Friedrich Wilhelm had managed to get full control of the Prussian areas from Poland in the 1660 Peace in Oliwa, his son, Friedrich III of Brandenburg, had the option to declare himself King of Prussia, since it was physically situated outside of the borders of the Empire.
 
Toio said:
there is nothing wrong with your event except the startdate and your notes reflect that you need this 1471 startdate due to human play. As you say, the event will not fire too soon IF AI played.
As I tested this, it did fire once for the AI, because Austria owned BOS., but with the new BOS and SER events, this seems more unlikely

I leave it to Yodamaster. 1471 or 1540 . your call

Not only for human play - the AI sometimes does astonishing things :D
However if we assume a historical flow of events then the AI won´t be able to get the event too soon.

At what time did the event fire in your test when HAB owned Bosnia Toio?

I tried a hands-off game with the fastest gamespeed myself as Aztec (with Columbus/Ney) and it became an ahistorical mess: Burgundy crippled France and then chose the Palatinate Elector as husband for Mary creating a Palatinate from Rhine to Rhone (including Alsace and Baden which ought to be HAB), Switzerland annexed Wirtemberg so no inheritance there for HAB, Hungary annexed Wallachia and western Moldavia after Poland took Bujak and then Hungary even annexed the remains of Tyrol. England annexed Brittany...
Austria did not get the Tyrol inheritance but ahistorically annexed Bohemia early around 1460. Sadly the game crashed after 1487 and I had no savegame.

The countrysize trigger was met early but TUR never was a neighbour.

If we assume a more historical flow of events (not Bohemian inheritance so early for example) then Austria will not be in a position for the event early so I agree that the start date could be moved further back. A bit. Slightly. ;)

I have edited the event in post 940 here:
http://forum.paradoxplaza.com/forum/showpost.php?p=7640558&postcount=940

Start date no longer 1463 or 1471 but 05.04.1490 (death of Corvinus when Hungary begins it´s decline)
and added as condition that Austria owns and controls it´s capital at Vienna (in case that Corvinus took that from them and they never got it back). Better?

Another point: That Palatinate that inherited Burgundy was huge. It owned all of Burgundy including the conquests of Friesland the whole north of France except Ile de France and the southeast of France except the coastal provinces which belonged both to Provence and PFA itself. The new elector events would take care of the conquests in the HRE, but the mess in France would first be corrected with the inheritance of Bavaria event for PFA in 1777 - should that be so? Or should the french non-core possesions of BUR be ceded to FRA in event BUR137047 or PFA255011?
 
Last edited:
ConjurerDragon said:
I tried a hands-off game with the fastest gamespeed myself as Aztec (with Columbus/Ney) and it became an ahistorical mess: Burgundy crippled France and then chose the Palatinate Elector as husband for Mary creating a Palatinate from Rhine to Rhone (including Alsace and Baden which ought to be HAB), Switzerland annexed Wirtemberg so no inheritance there for HAB, Hungary annexed Wallachia and western Moldavia after Poland took Bujak and then Hungary even annexed the remains of Tyrol. England annexed Brittany...
Austria did not get the Tyrol inheritance but ahistorically annexed Bohemia early around 1460. Sadly the game crashed after 1487 and I had no savegame.
:wacko:

ConjurerDragon said:
I have edited the event in post 940 here:
http://forum.paradoxplaza.com/forum/showpost.php?p=7640558&postcount=940

Start date no longer 1463 or 1471 but 05.04.1490 (death of Corvinus when Hungary begins it´s decline)
and added as condition that Austria owns and controls it´s capital at Vienna (in case that Corvinus took that from them and they never got it back). Better?
Please use yellow for modified or added stuffs. It will help understanding the changes.

ConjurerDragon said:
Another point: That Palatinate that inherited Burgundy was huge. It owned all of Burgundy including the conquests of Friesland the whole north of France except Ile de France and the southeast of France except the coastal provinces which belonged both to Provence and PFA itself. The new elector events would take care of the conquests in the HRE, but the mess in France would first be corrected with the inheritance of Bavaria event for PFA in 1777 - should that be so? Or should the french non-core possesions of BUR be ceded to FRA in event BUR137047 or PFA255011?
No idea. Things maybe went too far for Burgundy and engine is on its own with described situation.
 
ConjurerDragon said:
At what time did the event fire in your test when HAB owned Bosnia Toio?

always before 1435, about 10 to 20% of my games.

It is starting to get worse though coz, HUN seem to annex SER too fast and then DOW TUR, HAB follow and take BOS coz of a leader (and none for HUN)

while searching other stuff yesterday, I came across this
A personal union is a relationship of two or more entities that are considered separate, sovereign states, which, through established law, share the same person as their respective head of state. It is not to be confused with a federation, which internationally is considered as a single state.

Personal unions can arise for very different reasons, ranging from near coincidence (a princess who is already married to a king becomes pregnant, and their child inherits the crown of both countries) to virtual annexation (where a personal union sometimes was seen as a means of preventing uprisings).

Croatia

* Personal union with Hungary from 1102 to 1300 and 1307 to 1526
* Personal union with Austria from 1527 to 1918
 
ConjurerDragon said:
Another point: That Palatinate that inherited Burgundy was huge. It owned all of Burgundy including the conquests of Friesland the whole north of France except Ile de France and the southeast of France except the coastal provinces which belonged both to Provence and PFA itself. The new elector events would take care of the conquests in the HRE, but the mess in France would first be corrected with the inheritance of Bavaria event for PFA in 1777 - should that be so? Or should the french non-core possesions of BUR be ceded to FRA in event BUR137047 or PFA255011?
Maybe at this point we are completely going ahistorical, so I don't know if we need a proper France without a proper Spain (+Low Countries).
 
Toio said:
always before 1435, about 10 to 20% of my games.

It is starting to get worse though coz, HUN seem to annex SER too fast and then DOW TUR, HAB follow and take BOS coz of a leader (and none for HUN)
...

Before 1435? But even in my first proposal for that event the startdate was 1463 (when Austria inherits Styria) so how could the event fire before 1435?
Or do you mean the trigger condition were all fulfilled at that time? The neighbour=TUR and even the countrysize trigger?

while searching other stuff yesterday, I came across this
A personal union is a relationship of two or more entities that are considered separate, sovereign states, which, through established law, share the same person as their respective head of state. It is not to be confused with a federation, which internationally is considered as a single state.

Personal unions can arise for very different reasons, ranging from near coincidence (a princess who is already married to a king becomes pregnant, and their child inherits the crown of both countries) to virtual annexation (where a personal union sometimes was seen as a means of preventing uprisings).

Croatia

* Personal union with Hungary from 1102 to 1300 and 1307 to 1526
* Personal union with Austria from 1527 to 1918

Which should mean that 1527 would be a possible date for this event?
 
YodaMaster said:
Maybe but I'd like to have Toio's comment.

have gathered some information:

- In 1502 , Plans by Vladislav II, Louis II and many Croatian Nobles to offer the BAN (viceroy) of Croatia to Maximilian I for protection as well suzerity to HRE.
Max , undecided , sent only troops to aid the Hungarians and croats

- In 1520 , Ferdinand (Austria) accepted the Ban of Croatia that his father refused.

- In 1521 while the seige of Nandorfehervar was in progress, ferdinand called a meeting of all nobles of Croatia as well Hungarians and bohemians to setup and establish the Austrian Military Border, which was 1000 kilometes long by 60 kiloneters wide. In this corridor the slavic people where under the HRE, protected and armed. The main conditon was that they could not migrate further north into austrian lands ,ie, krain, styria etc etc.

SO, i think 1520 seems OK,

but I disagree for an earlier date, its the same as I disagree with the TUR move of capital to thrace before 1453, even if they take thrace earlier
 
Toio said:
have gathered some information:

- In 1502 , Plans by Vladislav II, Louis II and many Croatian Nobles to offer the BAN (viceroy) of Croatia to Maximilian I for protection as well suzerity to HRE.
Max , undecided , sent only troops to aid the Hungarians and croats

- In 1520 , Ferdinand (Austria) accepted the Ban of Croatia that his father refused.

- In 1521 while the seige of Nandorfehervar was in progress, ferdinand called a meeting of all nobles of Croatia as well Hungarians and bohemians to setup and establish the Austrian Military Border, which was 1000 kilometes long by 60 kiloneters wide. In this corridor the slavic people where under the HRE, protected and armed. The main conditon was that they could not migrate further north into austrian lands ,ie, krain, styria etc etc.

SO, i think 1520 seems OK,

but I disagree for an earlier date, its the same as I disagree with the TUR move of capital to thrace before 1453, even if they take thrace earlier

O.k. I´m convinced, I change the startdate to 1520.

Some questions about the event to lose slavonic culture:
Does it matter to the game engine if the deathdate is after the end of the EU2 timeline? If not I would prefer a rather late deathdate (in case the trigger conditions are not fulfilled before) if an unlimited time patch is used.
 
YodaMaster said:
Last date for AGCEEP events is "deathdate = { year = 1820 }". It is a convention.

I have edited both events in post 940.
 
There are events written for Kingdom of Prussia in which the country needs to have more than 5/6 provinces in order to have certain event chains such as the Seven Years war or the partitions of Poland.

Since it is not seldom that Prussia stays with its German provinces only, ie Prussia and Memel are generally lost due to no connections, I would suggest to reduce the countrysize to 4 in the triggers of following events:
263003 (current trigger has countrysize = 6)
3533 (prev. 5)
3531 (prev. 5)
3534 (prev. 5)
 
YodaMaster said:
I can't check events right now but Magdeburg + Brandenburg + Küstrin + Hinterpommern = 4

It makes sense but it depends on what events are intended for.
- 263003 is the event starting the sequence of the Seven Years War (Convention of Westminster)
- 3533 is the first partition of Poland, triggered by POL_3499 A, Prussia will get some cores together with Austria an Russia
- 3531 is about the The Bavarian Succession of 1777, PRU against HAB expansionism in HRE
- 3534 is the second partition of Poland, triggered by POL_3500 A, Prussia will get some cores together with Russia
 
But from gameplay reasons, does it make sense that Prussia takes part in partitions of Poland when it only has 4 provs, Poland around 10-15 not to mention Austria and Russia? Why would Russia and Austria give anything to weak Prussia?? In Russia there was strong opposition against "sharing" Poland with other countries and if Prussia is weak I just dont see them doing this.
 
ConjurerDragon said:
O.k. I´m convinced, I change the startdate to 1520.

Some questions about the event to lose slavonic culture:
Does it matter to the game engine if the deathdate is after the end of the EU2 timeline? If not I would prefer a rather late deathdate (in case the trigger conditions are not fulfilled before) if an unlimited time patch is used.

shouldn't austria retain slavonic culture beyond our end game date. IIRC serbia etc was still austrian at the beginning of WW1
 
rybka said:
But from gameplay reasons, does it make sense that Prussia takes part in partitions of Poland when it only has 4 provs, Poland around 10-15 not to mention Austria and Russia? Why would Russia and Austria give anything to weak Prussia?? In Russia there was strong opposition against "sharing" Poland with other countries and if Prussia is weak I just dont see them doing this.

Prussia is always smaller than Russia and Poland - regardless if Prussia owns 4 or 6 provinces. If they are weaker or strong enough to get a share was historically more a question of "techlevel" not the area they ruled.

If the countrysize trigger is reduced from 6 to 4 we could add a land techt trigger like e.g.
"land = 9"
(this is no suggestions about the landtechlevel only an example. At the time of the 1st polish partition the landtechlevel should be much higher).
 
Toio said:
shouldn't austria retain slavonic culture beyond our end game date. IIRC serbia etc was still austrian at the beginning of WW1

Serbia was never ruled by Austria Toio.

Take a look at that map here:
http://upload.wikimedia.org/wikipedia/commons/9/99/Österreich-Ungarn_1898.jpg

Perhaps you meant Croatia or Bosnia instead of Serbia?

However my first thought for the death date of that event was the
28. June 1914 ;)
If 1820 is a convention used in AGCEEP I have no problem with that. The late death date would have been useful only if someone would have played on beyond the normal end of game with an unlimited time patch.
 
ConjurerDragon said:
Serbia was never ruled by Austria Toio.

Take a look at that map here:
http://upload.wikimedia.org/wikipedia/commons/9/99/Österreich-Ungarn_1898.jpg

Perhaps you meant Croatia or Bosnia instead of Serbia?

However my first thought for the death date of that event was the
28. June 1914 ;)
If 1820 is a convention used in AGCEEP I have no problem with that. The late death date would have been useful only if someone would have played on beyond the normal end of game with an unlimited time patch.

I included serbia because I knew that belgrade was austrian owned, but I forgot that serbia was further south in the balkans than where it is now in 2007.

thanks on explanation