• 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.
I'm playing as Hussites, and finally got enough money to convert Carpathia (I'm of course Reformed). However, after successful conversion, Carpathia is still Catholic. Why? Is it a bug?

a3za6o.jpg
 
The "bug" is being able to have a Reformed country before the Reformation event(s)... This is inside EU2.

The province is converted but the game and especially the religion map don't take it in account and the value and display of any Refomed or Protestant province are forced to Catholic until the Reformation event(s). When the event that activates the Reformed faith will fire, display and effect for Carpathia (and all others) will be the right ones.

Remember Reformation in vanilla. Conversion of all the provinces marked as non-Catholic in province.csv happens instantaneously just after the Reformation event(s).

There is nothing we can do about this behaviour without modifying the source code.
 
Misspelling in province.csv:
Code:
862;Che[color=red]a[/color]sapeake Bay
 
Just for consistency with the other tooltips of the top bar:

BAR_MERCHANT_I;We have %d Merchant(s) \n(currently %.2f per year);;;;;;;;;;

BAR_TREASURY_I;We have %d ducat(s) \n(currently %.2f per month);;;;;;;;;;
 
Last edited:
For some reason, Mangalore starts without any fortifications in 1419. So, unless there is an historical or a gameplay explanation, in 1419_VIJ_Vijayanagar.inc:
Code:
	city = {
		[COLOR="Yellow"]fortress = { level = 1 }[/COLOR]
		population = 18000
		location = 568
	}
 
Not sure, maybe Garbon could tell. But this is a fact "simplified" Hindu cities sprites set doesn't help to see the difference between cities with fortresses and others...
 
redundant code

How can a country have a dynastic marriage with itself? And it's not a typo for Aragon since 142011 gives one.
Code:
#(1474) Isabel and Fernando Kings of Castile
#by Twoflower and Fodoron
event = {
	id = 142012
	random = no
	country = CAS
	name = "EVENTNAME142012" #Isabel and Fernando Kings of Castile
	desc = "EVENTHIST142012"

	date = { day = 13 month = december year = 1474 }

	action_a = {
		name = "ACTIONNAME142012A" #Isabel and Fernando will rule Castile jointly from now on
		command = { type = stability value = 2 }
		[COLOR="Red"]command = { type = dynastic which = CAS }[/COLOR]
		command = { type = relation which = ARG value = 150 }
		command = { type = wakeleader which = 029801 } #Fernando (CAS)
		command = { type = domestic which = centralization value = 1 }
		command = { type = domestic which = aristocracy value = -1 }
	}
}
 
Last edited:
Catalan culture for Spain?

I thought we'd taken away Catalan culture when Spain is formed to represent their failure to be fully absorbed? It's not in the 1520 scenario, but remains in the formation of Spain events. As well as Alt-Iberia.
 
Umm.. you wrote the event that removes it...

Code:
#(1516) Death of Fernando of Aragon
#by sturmvogel
event = {
	id = 285223
	trigger = {
		OR = {
			monarch = 0127500 #Isabel y Fernando
			monarch = 0127526 #Fernando I
		}
	}
	random = no
	country = SPA
	name = "EVENTNAME285223" #Death of Fernando of Aragon
	desc = "EVENTHIST285223"
	#-#

	date = { day = 23 month = january year = 1516 }

	action_a = {
		name = "DAMN"
		command = { type = domestic which = centralization value = -1 }
		command = { type = remove_countryculture which = amazonian } #Catalan
		command = { }
	}
}

The death of King Fernando of Aragon weakened the authority of the Crown of Spain over the separate crowns of Aragon because it now lacked anyone who knew the players and the system well enough to get them to do the royal bidding. The various governments of Aragon took advantage of the inexperienced Burgundians who came with Carlos I to reassert their ancient rights and privileges.
 
Umm.. you wrote the event that removes it...

Code:
#(1516) Death of Fernando of Aragon
#by sturmvogel
event = {
	id = 285223
	trigger = {
		OR = {
			monarch = 0127500 #Isabel y Fernando
			monarch = 0127526 #Fernando I
		}
	}
	random = no
	country = SPA
	name = "EVENTNAME285223" #Death of Fernando of Aragon
	desc = "EVENTHIST285223"
	#-#

	date = { day = 23 month = january year = 1516 }

	action_a = {
		name = "DAMN"
		command = { type = domestic which = centralization value = -1 }
		command = { type = remove_countryculture which = amazonian } #Catalan
		command = { }
	}
}

The death of King Fernando of Aragon weakened the authority of the Crown of Spain over the separate crowns of Aragon because it now lacked anyone who knew the players and the system well enough to get them to do the royal bidding. The various governments of Aragon took advantage of the inexperienced Burgundians who came with Carlos I to reassert their ancient rights and privileges.

What? Can't a guy have a senior moment around here without a few comments from the peanut gallery? :eek:o
 
How can a country have a dynastic marriage with itself? And it's not a typo for Aragon since 142011 gives one.
Code:
#(1474) Isabel and Fernando Kings of Castile
#by Twoflower and Fodoron
event = {
	id = 142012
	random = no
	country = CAS
	name = "EVENTNAME142012" #Isabel and Fernando Kings of Castile
	desc = "EVENTHIST142012"

	date = { day = 13 month = december year = 1474 }

	action_a = {
		name = "ACTIONNAME142012A" #Isabel and Fernando will rule Castile jointly from now on
		command = { type = stability value = 2 }
		[COLOR="Red"]command = { type = dynastic which = CAS }[/COLOR]
		command = { type = relation which = ARG value = 150 }
		command = { type = wakeleader which = 029801 } #Fernando (CAS)
		command = { type = domestic which = centralization value = 1 }
		command = { type = domestic which = aristocracy value = -1 }
	}
}
Souldn't it be a RM with ARG as safety instead?

Weird things could happen between 1469 (RM in CAS_142010 or CAS_142011) and 1474...
 
Last edited: