• 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.

Austrischen

GRAAAAAAAZEEEEEEE!!!!!
8 Badges
Jan 6, 2006
878
0
  • Deus Vult
  • Europa Universalis III
  • Hearts of Iron III
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria: Revolutions
  • 500k Club
i want to rename the principalities as Themes and the counts as dukes but... where was that written?

it's hardcoded?
 
Last edited:
i want to rename the principalities as Themes and the counts as dukes but... where id that written?

it's hardcoded?

All counts are named counts in the game, you can't change one group of counts to be named dukes. It is either all counts or all dukes.

You can rename orthodox duke-level titles from Prince to what ever you want. But then all the orthodox rulers (so also thos in Russia) will have such a title.

You can edit these in Crusader Kings/config/text.csv

Code:
TIER_DUCHY_ORTHODOX;Principality of;;;;;;;;;;X
TIER_DUKE_ORTHODOX;Prince;;;;;;;;;;X
TIER_DUCHESS_ORTHODOX;Princess;;;;;;;;;;X

Adding something like this

TIER_COUNT_ORTHODOX;Dux

is not possible

You will also see entries for Archduke, Grandduke and so on, these don't work.
 
All counts are named counts in the game, you can't change one group of counts to be named dukes. It is either all counts or all dukes.

You can rename orthodox duke-level titles from Prince to what ever you want. But then all the orthodox rulers (so also thos in Russia) will have such a title.

You can edit these in Crusader Kings/config/text.csv

Code:
TIER_DUCHY_ORTHODOX;Principality of;;;;;;;;;;X
TIER_DUKE_ORTHODOX;Prince;;;;;;;;;;X
TIER_DUCHESS_ORTHODOX;Princess;;;;;;;;;;X

Adding something like this

TIER_COUNT_ORTHODOX;Dux

is not possible

You will also see entries for Archduke, Grandduke and so on, these don't work.

there is'nt any way to relate those tittles to a single country?

if not, can i create a new religion and then rename those tittles for the new religion?

something like:

greek orthodox and slavic orthodox?
 
also... i want to mode a new way of relations bettwen the Byzantine emperor and his "vassals", and, because they weren't vassals the events can't be the same for the German empire...
 
also... i want to mode a new way of relations bettwen the Byzantine emperor and his "vassals", and, because they weren't vassals the events can't be the same for the German empire...

Tell more on this ...
 
there is'nt any way to relate those tittles to a single country?

if not, can i create a new religion and then rename those tittles for the new religion?

something like:

greek orthodox and slavic orthodox?

CK is not as moddable as EU3:IN, so this can't be done. You cannot add new tags, religions, cultures, or tiers -- only reuse existing ones.
 
is there a way to use the tittles archduchy or grandduchy in the game?

becauseif i rename the former Byzantine duchies as Archduchies i can change their names to Themes...

i have already proved to simply change the name of the Tier of the Tags on the 1066 escenario titles file, but when the escenario is loaded the game is crashed giving me a direction on the .exe...
 
Well, you should. Events CAN be tweaked for orthodox vassals, so you can mod their behaviour.
Would be a cool idead for a mod ...

I'm currently reading 3 books on byzantine history for information purpose, but my first goal is to recreate a more exact administrative division of the empire:

something like this...

800px-Byzantine_Empire_Themes_1025-.png


i have a more accurate map, that shows the archontate (counties) wich were the former subdivision of the Themes
 
I'm currently reading 3 books on byzantine history for information purpose, but my first goal is to recreate a more exact administrative division of the empire:

So you want to mod the vassals?
Those information you can find in the scenario files. In 1066_scenario_titles.inc, you have information on each country. e.g. the duke of Adrianopolis:

title = {
tag = ADRI
tier = duchy
liege = BYZA
holder = {
character = { type = 10 id = 1736 }
startdate = {
year = 1066
month = january
day = 0
}
}
}


You can change the liege of each county.
 
HERE IS THE PROJECT:

EUROPA.jpg


ASIA.jpg
 
¿can a group of events be related to an exact tag?
 
It will only fire if it is that ruler's primary title.

If you tie an event to BURG, it will not fire for GERM in 1066 even though GERM has the GERM, ITAL, and BURG titles.

Hm ... does it mean that the following conditions will fail for the king?

condition = { type = title value = GERM }
condition = { type = title value = BURG }
condition = { type = title value = ITAL }

If it is true what you say, than a ruler with all three titles will not get a = TRUE, cause the program checks the first condition = true and the other two = false ???

:confused:
 
No, that does work... hmm. I'm likely confusing things (again :D).

Got it! As a condition in the trigger it does work, but you cannot check this inside CRC checks. So you can't find a vassal of BURG if GERM has BURG as a secondary title by checking for the BURG tag, but of course you could use the workaround of setting and checking a target.
 
As I understand you right: (1) will work ...

trigger = {
condition = { type = title value = GERM }
condition = { type = title value = BURG }
condition = { type = title value = ITAL }
}

while (2) will not

trigger = {
condition = { type = is_vassal }
condition = { type = ruler_csc
condition = { type = title value = GERM }
condition = { type = title value = BURG }
condition = { type = title value = ITAL }
}
}

(1) will correctly trigger if the ruler has all three titles
(2) will not trigger, even if he has all three titles ???
 
Never tried it like that, but in testing I found it does not work for GERM+BURG+ITAL if the trigger is
Code:
trigger = {
condition = { type = is_vassal }
condition = { type = ruler_csc
condition = { type = title value = BURG }
} 
}