Paradox Interactive Forums  

Go Back   Paradox Interactive Forums > Historical Games > Europa Universalis II > EU2 - Scenarios, Events and Modifications > AGC-EEP historical mod > Event Exchange Project (EEP)

Reply
 
Thread Tools
Old 22-05-2003, 15:18   #1
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Changes from EUII 1.05 to 1.07

I went through the readme, and picked up on a few more changes in the base game that we haven't been included in the EEP. I was going to put this in the bug thread, but I think some of these warrant discusion.

All notes in squre brackets have already been changed in the EEP.

Some of the changes in 1.06 readme:
Quote:
- Fix to Treaty of Arras event to stop BUR siding with ENG or FRA while at war with them.
Checking the event 1.05 seems to be the same as 1.07. Don't have 1.06 to see if there is a change there. Still it makes sense, and we could add atwar=no.
Quote:
- Corrections to the [inheritance of Hungary &] League of Augsburg.
Again, 1.07 seems to be the same as 1.05 (checked HOL, ENG and BAD, all are the same).
Quote:
- Fixed start date of Henri IV
Code:

historicalmonarch = {
	id = { type = 6 id = 04011 }
	name = "Henri IV"
	startdate = {
		day = 2
		month = august
		year = 1589
		}
	deathdate = {
		day = 14
		month = may
		year = 1610
		}
	DIP = 9
	ADM = 9
	MIL = 9
	dormant = no
}
Quote:
- CB's for Teutonic Order is now the same in both 1492 and 1419.
Change
nationalprovinces = {
289 290 301 }
to
nationalprovinces = {
275 276 277 282 283 289 290 }
Admittedly I'm not sure we should do this.
Quote:
- The 'Inheritance of Brandenburg' Event now includes Danzig.
Inspection of the events shows that Danzig is actually granted with the Pommeranian inheritance. I think this makes no sense at all, it should either be granted with the Prussian inheritance, or with the partition of Poland. Suggestion:
Code:

#The incorporation of Prussia into Brandenburg#
#Edited by St Leo #
event = {
	id = 3636				#Triggerd by PRU 3517#
	random = no
	country = BRA
	name = "EVENTNAME3636"
	desc = "EVENTHIST3636"
	style = 3

	action_a ={				#Keep Polish sovereignty#
		name = "ACTIONNAME3636A"
		command = { type = inherit which = U15 }
		command = { type = addcore which = 290 }
		command = { type = addcore which = 289 }
		command = { type = addcore which = 301 } #Danzig
		command = { type = relation which = POL value = -25 }
	}
	
	action_b ={				#Defy Polish sovereignty#
		name = "ACTIONNAME3636B"
		command = { type = inherit which = U15 }
		command = { type = addcore which = 290 }
		command = { type = addcore which = 289 }
		command = { type = addcore which = 301 }  #Danzig
		command = { type = relation which = POL value = -100 }
		command = { type = treasury value = 200 }
	}
}	

Quote:
- The expelling of the moors events have been tweaked.
Change
Code:

#Torquemada and the Expulsion of the Moors#
event = {

	id = 3150
	trigger = { #added trigger conditions#
			owned = { province = 438 data = SPA }
			owned = { province = 443 data = SPA }
		} 
	random = no
	country = SPA
	name = "EVENTNAME3150"
	desc = "EVENTHIST3150"
	style = 1

	date = { day = 1 month = january year = 1493 }
	offset = 30
	deathdate = { day = 30 month = december year = 1500 }#extended by 2 years

	action_a ={		#Let us be rid of those we cannot trust#
		name = "ACTIONNAME3150A"
		command = { type = domestic which = INNOVATIVE value = -3 }
		command = { type = population which = 443 value = -18000 }
		command = { type = population which = 439 value = -8000 }
		command = { type = population which = 438 value = -5000 }
		command = { type = religiousrevolt which = 438 }
		command = { type = religiousrevolt which = 443 }
		command = { type = provincereligion which = 438 value = catholic }
		command = { type = provincereligion which = 443 value = catholic }
		command = { type = stability value = -1 }
		command = { type = trigger which = 3654 }
		command = { type = trigger which = 3652 }
		command = { type = trigger which = 3657 }
	}

	action_b ={		#Let us make a clean sweep for the Glory of God#
		name = "ACTIONNAME3150B"
		command = { type = domestic which = INNOVATIVE value = -4 }
		command = { type = population which = 443 value = -20000 }
		command = { type = population which = 439 value = -9000 }
		command = { type = population which = 438 value = -6000 }
		command = { type = population which = 444 value = -24000 }
		command = { type = population which = 445 value = -3500 }
		command = { type = provincereligion which = 438 value = catholic }
		command = { type = provincereligion which = 443 value = catholic }
		command = { type = provincereligion which = 444 value = catholic }
		command = { type = provincereligion which = 445 value = catholic }
		command = { type = religiousrevolt which = 438 }
		command = { type = religiousrevolt which = 443 }
		command = { type = religiousrevolt which = 444 }
		command = { type = religiousrevolt which = 445 }
		command = { type = stability value = -3 }
		command = { type = trigger which = 3728 }
		command = { type = trigger which = 3729 }
		command = { type = trigger which = 3730 }
	}
}

to
Code:

#Torquemada and the Expulsion of the Moors#
event = {

	id = 3150
	trigger = { #added trigger conditions#
			owned = { province = 438 data = SPA }
			owned = { province = 443 data = SPA }
		} 
	random = no
	country = SPA
	name = "EVENTNAME3150"
	desc = "EVENTHIST3150"
	style = 1

	date = { day = 1 month = january year = 1493 }
	offset = 30
	deathdate = { day = 30 month = december year = 1500 }#extended by 2 years

	action_a ={		#Let us be rid of those we cannot trust#
		name = "ACTIONNAME3150A"
		command = { type = domestic which = INNOVATIVE value = -3 }
		command = { type = population which = 444 value = -15000 }
		command = { type = population which = 439 value = -15000 }
		command = { type = religiousrevolt which = 438 }
		command = { type = religiousrevolt which = 443 }
		command = { type = provincereligion which = 438 value = catholic }
		command = { type = provincereligion which = 443 value = catholic }
		command = { type = stability value = -1 }
		command = { type = trigger which = 3654 }
		command = { type = trigger which = 3652 }
		command = { type = trigger which = 3657 }
	}

	action_b ={		#Let us make a clean sweep for the Glory of God#
		name = "ACTIONNAME3150B"
		command = { type = domestic which = INNOVATIVE value = -4 }
		command = { type = population which = 439 value = -20000 }
		command = { type = population which = 444 value = -20000 }
		command = { type = provincereligion which = 438 value = catholic }
		command = { type = provincereligion which = 443 value = catholic }
		command = { type = provincereligion which = 444 value = catholic }
		command = { type = provincereligion which = 445 value = catholic }
		command = { type = religiousrevolt which = 438 }
		command = { type = religiousrevolt which = 443 }
		command = { type = religiousrevolt which = 444 }
		command = { type = religiousrevolt which = 445 }
		command = { type = stability value = -3 }
		command = { type = trigger which = 3728 }
		command = { type = trigger which = 3729 }
		command = { type = trigger which = 3730 }
	}
}
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 22-05-2003, 23:57   #2
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Spanish Leader File

The Spanish leader file has been seriously reworked from 1.05 to 1.07. Some of the changes are based on the EEP file, but there is a lot more.

Using EEP ID numbers the changes needed to make the EEP compatible with the 1.07 leader file are (changes in brackets already in EEP):

1. 09741 El Gran Capitan: change start date from 1492 to 1486, increase fire from 4 to 6
2. 09746 Juan de la Cosa: change start date from 1504 to 1499
3. 09747 Juan Diaz de Solis: change start date from 1506 to 1508
4. 09750 Ponce de Leon: change start date from 1513 to 1512
5. 09751 Hernan Cortes: change movement from 5 to 6, change seige from 0 to 1
6. 09757 Francisco de Montejo: change start date from 1527 to 1518 change death date from 1540 to 1550
7. 09760 Fernando de Guzman: Change first name from Nuno to Fernando, change startdate from 1529 to 1556, change deathdate from 1536 to 1561,
8. 09761 Francisco Pizarro: change movement from 4 to 5, change siege from 0 to 1
9. 09763 Alvaro de Bazan: [change start date from 1531 to 1555], change rank from 2 to 1, [change movement from 3 to 4, change fire from 4 to 5 change shock from 4 to 5]
10. 09764 Juan de Grijalva: Change first name from Hernando to Juan, change start date from 1532 to 1508, change deathdate from 1537 to 1527
11. 09766 Pedro de Mendoza: change start date from 1535 to 1534
12. 09774 Alessandro Farnese: Change shock from 4 to 6
13. 09775 D. Juan de Austria: [change deathdate from 1605 to 1578], change fire from 3 to 4
14. 09776 Recalde: [change startdate from 1575 to 1571, change deathdate from 1610 to 1588], change rank from 2 to 3, change movement from 2 to 3, change fire from 3 to 2
15. 09782 Ambrogio Spinola: change deathdate from 1629 to 1630
16. 09785 Fernando de Austria: [change deathdate from 1655 to 1641], change shock from 4 to 3, [change siege from 2 to 1]
17. 09786 Francisco de Melo: Change startdate from 1630 to 1636, change movement from 2 to 3, change fire from 3 to 2
18. 09788 Marques de Lede [change startdate from 1630 to 1690, change deathdate from 1655 to 1724, change movement from 2 to 3, change fire from 2 to 3, change shock from 2 to 3, change siege from 1 to 0]
19. 09790 Juan Jose de Austria: change shock from 4 to 3
20. 09793 Cordoba: [change startdate from 1720 to 1745], change deathdate from 1745 to 1796, change rank from 4 to 1, change movement from 4 to 5, change fire from 2 to 4, change shock from 2 to 4
21. 09796 Bernardo Galvez: change startdate from 1765 to 1775, change deathdate from 1785 to 1786
22. 09800 Cuesta: change movement from 2 to 3, change fire from 2 to 3
23. 09801 Castanos: change startdate from 1808 to 1791, change deathdate from 1813 to 1820, change fire from 3 to 4 [I'm amazed!]

In addition:

24. [Remove: Mendez de Haro, la Fuente, Buquoy, Moncada, Bernardo Galvez, Principe Issembourg, De Leyva, Alveroni, Armello]

25. ADD
Code:

historicalleader = {
	category = general
	id = { type = 6 id = 09806 } #renumbered from 09780
	name = "Old Duke of Alba"
	startdate = {
		year=1491
	}
	deathdate = {
		year=1531
	}
	rank = 1
	movement = 4
	fire = 3
	shock = 3
	siege = 0
}
historicalleader = {
	category = general
	id = { type = 6 id = 09807 } #renumbered from 09784
	name = "Marqués de Pescara"
	startdate = {
		year=1516
	}
	deathdate = {
		year=1526
	}
	rank = 3
	movement = 3
	fire = 3
	shock = 3
	siege = 0
}

historicalleader = {
	id = { type = 6 id = 09808 } #renumbered from 09795
	category = general
	name = "Ventura Caro"
	startdate = {
		year=1775
	}
	deathdate = {
		year=1809
	}
	rank = 3
	movement = 4
	fire = 3
	shock = 3
	siege = 0
}
historicalleader = {
	id = { type = 6 id =  09809 } #renumbered from 09797
	category = general
	name = "Marqués de la Romana"
	startdate = {
		year=1793
	}
	deathdate = {
		year=1811
	}
	rank = 2
	movement = 2
	fire = 3
	shock = 3
	siege = 0
}
historicalleader = {
	category = general
	id = { type = 6 id = 09810 } #renumbered from 09789 
	name = "Marqués del Vasto"
	startdate = {
		year=1535
	}
	deathdate = {
		year=1546
	}
	rank = 3
	movement = 3
	fire = 2
	shock = 2
	siege = 0
}
historicalleader = {
	category = general
	id = { type = 6 id = 09811 } #renumbered from 09791 
	name = "Filiberto de Saboya"
	startdate = {
		year=1553
	}
	deathdate = {
		year=1580
	}
	rank = 1
	movement = 3
	fire = 3
	shock = 3
	siege = 1
}
historicalleader = {
	category = general
	id = { type = 6 id = 09812 } #renumbered from 09794 
	name = "Duque de Feria"
	startdate = {
		year=1615
	}
	deathdate = {
		year=1635
	}
	rank = 1
	movement = 4
	fire = 3
	shock = 3
	siege = 0
}
historicalleader = {
	id = { type = 6 id =  09813 } #renumbered from 09802
	category = general
	name = "Palafox"
	startdate = {
		year=1802
	}
	deathdate = {
		year=1820
	}
	rank = 1
	movement = 4
	fire = 2
	shock = 2
	siege = 0
}
historicalleader = {
	id = { type = 6 id =  09814 } #renumbered from 09803
	category = admiral
	name = "Luis Fajardo"
	startdate = {
		year=1592
	}
	deathdate = {
		year=1617
	}
	rank = 1
	movement = 4
	fire = 3
	shock = 3
	siege = 0
}

historicalleader = {
	id = { type = 6 id = 09816 } #renumbered from 09807
	category = admiral
	name = "Marqués de la Victoria"
	startdate = {
		year=1732
	}
	deathdate = {
		year=1772
	}
	rank = 0
	movement = 4
	fire = 3
	shock = 3
	siege = 0
}

historicalleader = {
	id = { type = 6 id = 09818 } #renumbered from 09810
	category = admiral
	name = "Cosme Damián Churruca"
	startdate = {
		year=1786
	}
	deathdate = {
		year=1805
	}
	rank = 2
	movement = 3
	fire = 2
	shock = 2
	siege = 0
}


And the following EEP leaders who were not in 1.05 have been added in 1.07:

Change Carlos de Lannoy: 1/3/4/3/0 to 0/3/3/3/0
Change Enriquez de Acevado 1/3/4/3/0 to 1/3/3/3/1 change from Acevedo to Acevado
Blas de Lezo 3/3/3/4/0 to 1/5/4/4/0 start date to 1711 from 1733
Federico Gravina 2/4/3/3/0 to 1/4/3/3/0 start date from 1793 to 1783
Diego de Almagro start date from 1535 to 1533, deathdate from 26 April 1538 to 1543 8/2/3/3/0 to 8/6/3/3/0
Antonio de Oquendo 2/4/3/4/0 to 2/4/3/3/0 deathdate from 21 October 1639 to 1640
Fadrique de Toledo 1/3/4/3/0 to 1/3/3/0
Antonio Barceló 4/2/3/3/0 to 3/3/3/3/0 change startdate from 1773 to 1770 change deathdate from 1793 to 1797
Legazpi no change

I have not checked to see if there are any EEP leaders not in 1.07.

I think most of the changes in 1.07 came from the Spanish forum through Amadis de Gaula who used to be around the EEP. I believe most should be taken as is. Even Castanos, whose new stats I find incredible.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 23-05-2003, 10:20   #3
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
I added all these changes to the list for 1.4.1, except for the Teutonic cores. Check entries 30-34 to see if I got it right please.
Also, on the 'atwar = no', subject I found this in a thread for the GC:

Alliance events with possibility of war between the countries.

3642 The Death of King Lajos of Bohemia’
3643 The Winterking in Prague
3602 The Marriage of Anne of Brittany
3603 The Marriage of Anne of Brittany
3304 The Election of a Swedish Crownprince
3033 Personalunion with Holland
3728 Moor Exodus from Al-Andalus
3136 The Polish Succession of 1733
3612 The Hannover Dynasty in England
3450 Strategic Axis with Sweden
3451 Strategic Axis with Prussia
3452 Strategic Axis with Austria
3706 The Inheritance of Milano
3486 The Polish Succession of 1697
3501 The Return of August the Strong
3422 The Great Northern Conflict
3429 The Polish Succession of 1733
3607 The Succession in Provence
3628 The Polish Succession of 1733
3072 The Auld Alliance
3716 The Iberian Wedding
3717 The Iberian Wedding
3731 The Habsburg Wedding
3162 The Portuguese Crown
3163 The Portuguese Crown
3173 The Succession of Carlos II in Spain
3229 King Sigismund and Duke Charles
3241 The Great Northern Conflict
3775 The Succession in Brabant

Some of these are no longer used by EEP, but it implies that there might be more alliance events in EEP that do not have this as a prerequisite. Generally that should be there IMO. But perhaps there are important alliances that need to have their time spans prolonged to always occur. I'll do a search for it sometime.
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 23-05-2003, 14:15   #4
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Treaty of Arras doens't make an alliance right now does it?
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 23-05-2003, 18:54   #5
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
1.07 readme changes

Quote:
- Marquis de Pombal now arrives after his King.
Change:
Code:

#Marquis de Pombal#
event = {

	id = 3279
	random = no
	country = POR
	name = "EVENTNAME3279"
	desc = "EVENTHIST3279"
	style = 4

	date = { day = 1 month = january year = 1750 }
	offset = 10
	deathdate = { day = 1 month = april year = 1777 }

	action_a ={				#An Excellent Minister!#
		name = "ACTIONNAME3279A"
		command = { type = DIP which = 3 value = 240 }
		command = { type = ADM which = 4 value = 240 }
		command = { type = MIL which = 2 value = 240 }
		command = { type = domestic which = CENTRALIZATION value = 2 }
		command = { type = domestic which = ARISTOCRACY value = -2 }
		command = { type = domestic which = SERFDOM value = -2 }
		command = { type = domestic which = INNOVATIVE value = 1 }
		command = { type = domestic which = MERCANTILISM value = 3 }
		command = { type = domestic which = QUALITY value = 1 }
		command = { type = land value = 750 }
		command = { type = naval value = 750 }
		command = { type = stability value = 3 }
	}
}

to
Code:

#Marquis de Pombal#
event = {

	id = 3279
	random = no
	country = POR
	name = "EVENTNAME3279"
	desc = "EVENTHIST3279"
	style = 4

	date = { day = 3 month = august year = 1750 }
	offset = 10
	deathdate = { day = 1 month = april year = 1777 }

	action_a ={				#An Excellent Minister!#
		name = "ACTIONNAME3279A"
		command = { type = DIP which = 3 value = 240 }
		command = { type = ADM which = 4 value = 240 }
		command = { type = MIL which = 2 value = 240 }
		command = { type = domestic which = CENTRALIZATION value = 2 }
		command = { type = domestic which = ARISTOCRACY value = -2 }
		command = { type = domestic which = SERFDOM value = -2 }
		command = { type = domestic which = INNOVATIVE value = 1 }
		command = { type = domestic which = MERCANTILISM value = 3 }
		command = { type = domestic which = QUALITY value = 1 }
		command = { type = land value = 750 }
		command = { type = naval value = 750 }
		command = { type = stability value = 3 }
	}
}

Quote:
- Zygimantas II now dies when he historically did.
Change to (in monarchs.lit)
Code:

historicalmonarch = {
	id = { type = 6 id = 04297 }
	name = "Zygimantas II August"
	startdate = { 
		day = 1
		month = april
		year = 1548 
	}
	enddate = { 
		day = 7
		month = july
		year = 1572
	}
	DIP = 6
	ADM = 6
	MIL = 4
	dormant = no
	remark = "Union of Lublin, 1569"
}

Quote:
- Return of Napoleion event should work fine now.
from
Code:

#The Return of Napoleon#
event = {

	id = 3791
	trigger = {
			monarch = 04021
			atwar = yes
			NOT = {
				stability = 2
				}
			}
	random = no
	country = FRA
	name = "EVENTNAME3791"
	desc = "EVENTHIST3791"
	style = 5

	date = { day = 1 month = january year = 1810 }
	offset = 10
	deathdate = { day = 1 month = january year = 1821 }

	action_a ={				#Our Emperor is back!#
		name = "ACTIONNAME3791A"
		command = { type = wakemonarch which = 04018 }
		command = { type = relation which = ENG value = -150  }
		command = { type = relation which = HAB value = -150  }
		command = { type = relation which = SPA value = -150  }
		command = { type = relation which = PRU value = -150  }
		command = { type = relation which = RUS value = -150  }
		command = { type = relation which = SWE value = -150  }
		command = { type = manpower value = 20 }
		command = { type = stability value = 1 }
	}
}

to
Code:

#The Return of Napoleon#
event = {

	id = 3791
	trigger = {
			monarch = 04021
			atwar = yes
			NOT = {
				stability = 2
				}
			}
	random = no
	country = FRA
	name = "EVENTNAME3791"
	desc = "EVENTHIST3791"
	style = 5

	date = { day = 1 month = january year = 1810 }
	offset = 10
	deathdate = { day = 1 month = january year = 1821 }

	action_a ={				#Our Emperor is back!#
		name = "ACTIONNAME3791A"
		command = { type = wakemonarch which = 04020 }
		command = { type = relation which = ENG value = -150  }
		command = { type = relation which = HAB value = -150  }
		command = { type = relation which = SPA value = -150  }
		command = { type = relation which = PRU value = -150  }
		command = { type = relation which = RUS value = -150  }
		command = { type = relation which = SWE value = -150  }
		command = { type = manpower value = 20 }
		command = { type = stability value = 1 }
	}
}

And add
Code:

historicalmonarch = {
	id = { type = 6 id = 04020 }
	name = "Napoléon I"
	startdate = {
		day = 9
		month = november
		year = 1799
		}
	deathdate = {
		day = 5
		month = may
		year = 1824
		}
	DIP = 6
	ADM = 9
	MIL = 9
	dormant = yes
}

Quote:
- Added several core provinces to a Russian major event to make sure they always get it.
Change
Code:

#Russian claims in the East#
event = {

	id = 40018
	trigger = {
			owned = { province = 270 data = -1}
			owned = { province = 271 data = -1}
			owned = { province = 272 data = -1}
			owned = { province = 268 data = -1}
		}
	random = no
	country = RUS
	name = "EVENTNAME3404"
	desc = "EVENTHIST3404"
	style = 2

	date = { day = 1 month = january year = 1487 }
	offset = 500
	deathdate = { day = 1 month = january year = 1600 }

	action_a ={				#It all belongs to Mother Russia#
		name = "ACTIONNAME3404A"
		command = { type = INF which = -2 value = 10000 }
		command = { type = CAV which = -2 value = 10000 }
		command = { type = addcore which = 446 }
		command = { type = addcore which = 447 }
		command = { type = addcore which = 451 }
		command = { type = addcore which = 452 }
		command = { type = addcore which = 449 }
		command = { type = addcore which = 459 }
		command = { type = addcore which = 460 }
		command = { type = addcore which = 453 }
		command = { type = addcore which = 454 }
		command = { type = addcore which = 457 }
		command = { type = addcore which = 458 }
		command = { type = addcore which = 467 }
		command = { type = addcore which = 468 }
		command = { type = stability value = 1 }
	}
}

to
Code:

#Russian claims in the East#
event = {

	id = 40018
	trigger = {
			owned = { province = 270 data = -1}
			owned = { province = 271 data = -1}
			owned = { province = 272 data = -1}
			owned = { province = 268 data = -1}
		}
	random = no
	country = RUS
	name = "EVENTNAME3404"
	desc = "EVENTHIST3404"
	style = 2

	date = { day = 1 month = january year = 1487 }
	offset = 500
	deathdate = { day = 1 month = january year = 1600 }

	action_a ={				#It all belongs to Mother Russia#
		name = "ACTIONNAME3404A"
		command = { type = INF which = -2 value = 10000 }
		command = { type = CAV which = -2 value = 10000 }
		command = { type = addcore which = 262 }
		command = { type = addcore which = 267 }
		command = { type = addcore which = 274 }
		command = { type = addcore which = 277 }
		command = { type = addcore which = 446 }
		command = { type = addcore which = 447 }
		command = { type = addcore which = 448 }
		command = { type = addcore which = 451 }
		command = { type = addcore which = 452 }
		command = { type = addcore which = 449 }
		command = { type = addcore which = 459 }
		command = { type = addcore which = 460 }
		command = { type = addcore which = 453 }
		command = { type = addcore which = 454 }
		command = { type = addcore which = 457 }
		command = { type = addcore which = 458 }
		command = { type = addcore which = 467 }
		command = { type = addcore which = 468 }
		command = { type = addcore which = 1460 }
#		command = { type = stability value = 1 }
	}
}


Note that the stability plus in this event was removed by Paradox.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 23-05-2003, 19:33   #6
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Changes to Russian conquistadors

Quote:
Tweaked Russian conquistadors.
All changes are to dates and locations only (plus one name)
Code:

	historicalleader = {
		id = { type = 6 id = 09208 }
		category = conquistador
		name = "Grigorii Stroganov" #from "Semen Stroganov"
		startdate = {
			year = 1555 #from 1560
		}
		deathdate = {
			year = 1575
		}
		rank = 9
		movement = 3
		fire = 1
		shock = 1
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09211 }
		category = conquistador
		name = "Yermak"
		startdate = {
			year = 1579 #from 1575
		}
		deathdate = {
			year = 1585 #from 1590
		}
		rank = 8
		movement = 5
		fire = 6
		shock = 6
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09213 }
		category = conquistador
		name = "Ivan Mansurov"
		startdate = {
			year = 1584
		}
		deathdate = {
			year = 1598 #from 1605
		}
		rank = 8
		movement = 5
		fire = 2
		shock = 2
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09214 }
		category = conquistador
		name = "A. Dubenski"
		startdate = {
			year = 1619 # from 1600
		}
		deathdate = {
			year = 1630
		}
		rank = 9
		movement = 5
		fire = 1
		shock = 1
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09215 }
		category = conquistador
		name = "Petr Beketov"
		startdate = {
			year = 1631 #from 1630
		}
		deathdate = {
			year = 1655
		}
		location = 589
		rank = 8
		movement = 3
		fire = 3
		shock = 2
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09216 }
		category = conquistador
		name = "Ivan Moskvitin"
		startdate = {
			year = 1638 # from 1630
		}
		deathdate = {
			year = 1645 #from 1640
		}
		location = 600 #fom 589
		rank = 8
		movement = 4
		fire = 2
		shock = 2
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09217 }
		category = conquistador
		name = "Vasili Poyarkov"
		startdate = {
			year = 1642 #from 1640
		}
		deathdate = {
			year = 1648 #from 1660
		}
		location = 600
		rank = 9
		movement = 4
		fire = 3
		shock = 3
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09218 }
		category = conquistador
		name = "Erofei Khabarov"
		startdate = {
			year = 1648
		}
		deathdate = {
			year = 1654 #from 1680
		}
		location = 600 #from 628
		rank = 8
		movement = 4
		fire = 4
		shock = 4
		siege = 0
	}

	historicalleader = {
		id = { type = 6 id = 09220 }
		category = conquistador
		name = "Vladimir Atlasov"
		startdate = {
			year = 1696 #from 1680
		}
		deathdate = {
			year = 1711 #from 1710
		}
		rank = 8
		movement = 4
		fire = 2
		shock = 2
		siege = 0
	}
	historicalleader = {
		id = { type = 6 id = 09222 }
		category = conquistador
		name = "Chelyuskin"
		startdate = {
			year = 1735 #from 1725
		}
		deathdate = {
			year = 1745
		}
		location = 600 #from 632
		rank = 9
		movement = 5
		fire = 2
		shock = 3
		siege = 0
	}
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 23-05-2003, 20:48   #7
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
More from 1.07 readme

Quote:
- Royalists and Puritans can no longer revolt if the other is in play.
Add
no = PUR
and
no = ROY
to respective entries in revolt.txt. I realise that this will be different when these revolters are handled differently.
Quote:
- Greenland now becomes Norwegian core provinces when they go independent.
Inspection of files shows this isn't implemented. They start as Norwegian cores right now which give NOR a CB on DAN. To get rid of this problem I suggest
Change in 1419_nor.inc
nationalprovinces = {
255 256 258 259 261 381 1466
}

Code:

# End of the Kalmar Union #
event = {
	id = 3846
	
	# Triggered by SWE 3219 or 3234
	
	random = no
	country = NOR
	name = "EVENTNAME3846"
	desc = "EVENTHIST3846"
	style = 2

	action_a = { # Autonomy is unnecessary
		name = "ACTIONNAME3846A"
		command = { type = trigger which = 5848 } # Inherited by Denmark
	}
	action_b = { # Limited autonomy is best
		name = "ACTIONNAME3846B"
		command = { type = relation which = DAN value = 100 }
		command = { type = relation which = SWE value = -50 }
		command = { type = domestic which = ARISTOCRACY value = 2 }
		command = { type = domestic which = CENTRALIZATION value = 1 }
		command = { type = stability value = 2 }
		command = { type = addcore which = 1537 }
		command = { type = addcore which = 1538 }
	}
	action_c = { # Walk our own path
		name = "ACTIONNAME3846C"
		command = { type = breakvassal which = DAN }
		command = { type = relation which = DAN value = -150 }
		command = { type = relation which = SWE value = 80 }
		command = { type = stability value = -7 }
		command = { type = domestic which = ARISTOCRACY value = -2 }
		command = { type = domestic which = CENTRALIZATION value = 2 }
		command = { type = addcore which = 1537 }
		command = { type = addcore which = 1538 }
	}
}

Quote:
- Vestbygden is now inland.
Change in province.csv

Quote:
- Sale of Corsica event fixed.
Change
Code:

#The Sale of Corsica#
event = {

	id = 3140
	trigger = {
		exists = GEN
		owned = {
			province = 398
			data = GEN
			}
		}
	random = no
	country = FRA
	name = "EVENTNAME3140"
	desc = "EVENTHIST3140"
	style = 4

	date = { day = 1 month = january year = 1758 }
	offset = 30
	deathdate = { day = 1 month = january year = 1561 }

	action_a ={			#Offer to buy Corsica#
		name = "ACTIONNAME3140A"
		command = { type = trigger which = 3707 }
	}

	action_b ={			#Pass the opportunity#
		name = "ACTIONNAME3140B"
		command = { type = trigger which = 3046 }
	}
}

to
Code:

event = {

	id = 3140
	trigger = {
		exists = GEN
		owned = {
			province = 398
			data = GEN
			}
		}
	random = no
	country = FRA
	name = "EVENTNAME3140"
	desc = "EVENTHIST3140"
	style = 4

	date = { day = 1 month = january year = 1758 }
	offset = 30
	deathdate = { day = 1 month = january year = 1761 }

	action_a ={			#Offer to buy Corsica#
		name = "ACTIONNAME3140A"
		command = { type = trigger which = 3707 }
	}

	action_b ={			#Pass the opportunity#
		name = "ACTIONNAME3140B"
		command = { type = trigger which = 3046 }
	}
}
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 27-05-2003, 10:39   #8
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
These are the current choices in inheritance of Prussia event:

Code:
	action_a ={				#Keep Polish sovereignty#
		name = "ACTIONNAME3636A"
		command = { type = inherit which = U15 }
		command = { type = addcore which = 290 } #Prussia
		command = { type = addcore which = 289 } #Memel
		command = { type = addcore which = 301 } #Danzig
		command = { type = relation which = POL value = -25 }
	}
	
	action_b ={				#Defy Polish sovereignty#
		name = "ACTIONNAME3636B"
		command = { type = inherit which = U15 }
		command = { type = addcore which = 290 } #Prussia
		command = { type = addcore which = 289 } #Memel
		command = { type = addcore which = 301 } #Danzig
		command = { type = relation which = POL value = -100 }
		command = { type = treasury value = 200 }
	}
How can we make it more balanced? A note said:
# Remember make triggered event for POL command = { type = casusbelli which = BRA value = 12}
but this was never done.
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 27-05-2003, 11:43   #9
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
All reported here is fixed, thanks Isaac Brock! One question, what is the difference between an inland and a coastal province? In EU" terms I mean, don't tell me about the sea...
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 27-05-2003, 15:11   #10
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
It's in province.csv right? Basically whether there is a port in that province. So you can no longer get a port in Greenland as of 1.07. I think that's a good change.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 27-05-2003, 17:12   #11
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
The port was removed in 1.4, and some provinces are coastal without having a port. very well, I changed it to 'inland'.
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 27-05-2003, 17:43   #12
Garbon
Sultan d'Afrique
 
Garbon's Avatar
Deus Vult!For The Glory
 
Join Date: Feb 2002
Location: San Francisco
Posts: 9,028
I think Daywalker brought up something about that in the bug forum once. I don't think it mattered, if I recall correctly.
__________________
For the Glory: A Europa Universalis Game
Go to FTG forum!

NA 1.09 -AGCEEP 1.58 betas
AGCEEP High Council Member
Garbon is offline   Reply With Quote
Old 27-05-2003, 18:18   #13
Johnny Canuck
Field Marshal
 
Johnny Canuck's Avatar
Hoi2 Beta MemberVictoria Revolutions BetaHearts of Iron 2: ArmageddonEU3 Complete
 
Join Date: Feb 2001
Location: Brampton, Ontario, Canada
Posts: 7,457
I thought that inland vs. coastal affected whether colonists can be sent to the province without already owning a neighbouring province?
__________________
"So little done, so much to do." - Cecil Rhodes on the Day of his Death, 1902
Johnny Canuck is offline   Reply With Quote
Old 27-05-2003, 18:26   #14
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Interesting. I'm pretty sure I can send colonists to Greenland without having an adjacent city. Maybe by "changed to inland" Johan meant "removed port"?
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 27-05-2003, 18:43   #15
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
I'll try out the effects before all is set, with colonists from Denmark.
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 29-05-2003, 00:18   #16
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
One more

Quote:
- Corrections to the [inheritance of Hungary &] League of Augsburg.
Noticed on the bug forum what this one is about. This affects events 3172, 3030, 3198, 3522, 3510, 3680, 3611, 3684, 3676, 3663, 3664, and 3662.
I think this means that it affects the following countries
ENG BAD HAB HOL SPA HES KLE KOL PFA (by the way was Cologne really involved? They had a pro-French Wittelsbach as elector if I'm not mistaken)

The event currently is:
Code:

#The League of Augsburg#
event = {

	id = 3030			#triggered by FRA3127#
	random = no
	country = ENG
	name = "EVENTNAME3030"
	desc = "EVENTHIST3030"
	style = 3

	action_a ={				#Defy French claims#
		name = "ACTIONNAME3030A"
		command = { type = casusbelli which = FRA value = 72 }
		command = { type = relation which = FRA value = -150 }
		command = { type = relation which = BAD value = 100 }
		command = { type = relation which = HAB value = 150 }
		command = { type = relation which = PRU value = 150 }
		command = { type = relation which = HOL value = 150 }
		command = { type = relation which = HAN value = 100 }
		command = { type = relation which = SPA value = 100 }
		command = { type = relation which = HES value = 100 }
		command = { type = relation which = KLE value = 100 }
		command = { type = relation which = KOL value = 100 }
		command = { type = relation which = PFA value = 100 }
		command = { type = relation which = THU value = 100 }
	}

	action_b ={				#Ignore it#
		name = "ACTIONNAME3030B"
		command = { type = relation which = FRA value = 50 }
		command = { type = relation which = BAD value = -50 }
		command = { type = relation which = HAB value = -100 }
		command = { type = relation which = PRU value = -100 }
		command = { type = relation which = HOL value = -100 }
		command = { type = relation which = HAN value = -50 }
		command = { type = relation which = SPA value = -50 }
		command = { type = relation which = HES value = -50 }
		command = { type = relation which = KLE value = -50 }
		command = { type = relation which = KOL value = -50 }
		command = { type = relation which = PFA value = -50 }
		command = { type = relation which = THU value = -50 }
	}
}
for everyone. PRU needs to be replaced with BRA, as the tag change will not have happened yet.

By the way this is an example of why we should try to avoid having (say) major_kol.txt unless we've changed the Paradox events (for Cologne I'm almost certain we haven't). The Hanover event doesn't need to be fixed since all of Hanovers events are in eep_han.txt rather than in major_han.txt. If we had eep_kol.txt we'd be better off. Obviously we'd still have had to fix England and Spain, but it would be a bit easier.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod

Last edited by Isaac Brock; 29-05-2003 at 00:28.
Isaac Brock is offline   Reply With Quote
Old 29-05-2003, 00:34   #17
Twoflower
Vile treacherous Judas
 
Twoflower's Avatar
EU3 OwnerNapoleonic MarshalEuropa Universalis III: In NomineHeir to the Throne
 
Join Date: Nov 2001
Location: Beautiful Trier
Posts: 3,052
Re: One more

Quote:
Originally posted by Isaac Brock
By the way this is an example of why we should try to avoid having (say) major_kol.txt unless we've changed the Paradox events (for Cologne I'm almost certain we haven't). The Hanover event doesn't need to be fixed since all of Hanovers events are in eep_han.txt rather than in major_han.txt. If we had eep_kol.txt we'd be better off. Obviously we'd still have had to fix England and Spain, but it would be a bit easier. [/b]
Paradox's major_kol.txt was changed in EEP 1.4 though (edited the Bavarian Archbishops).
__________________
Today you are frying a goose, but from the ashes a swan will rise.
Jan Hus (Hus means goose in Czech) before his execution at the stake

AGCEEP High Council member
Twoflower is offline   Reply With Quote
Old 29-05-2003, 14:38   #18
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
woops. I'm as guilty of gratuitously throwing Paradox events and EEP events together as anyone. I just wanted to point out the hazards of doing so when we haven't changed the Paradox events.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Old 01-06-2003, 00:05   #19
Norrefeldt
Porphyrogenitus
 
Norrefeldt's Avatar
 
Join Date: Aug 2001
Location: EU
Posts: 7,433
I add this to the bug fixes.
'PRU needs to be replaced with BRA, as the tag change will not have happened yet', that was it right?
__________________
AGCEEP High Council Member The great unified mod - AGCEEP 1.57
Links to the first release of the HC map ICQ 174373941
Norrefeldt is offline   Reply With Quote
Old 02-06-2003, 14:32   #20
Isaac Brock
Field Marshal
 
Isaac Brock's Avatar
 
Join Date: Oct 2001
Location: Massachusetts USA
Posts: 9,457
Yes, that's it for the League of Augsburg.
__________________
" Ignoring the root causes of terror, turning a blind eye to the oppression and despair of millions may be easier in the short run, but we learned on September the 11th, if violence and fanaticism are not opposed at their source, they will find us where we live." GWB

Sick of only the big boys getting the Dutch revolts? Try the Dutch Revolts Mod
Isaac Brock is offline   Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


All times are GMT +1. The time now is 22:37.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
© Copyright 2001-2009 Paradox Interactive