I've been working on scripts that add both duchy titles to kingdom titles and kingdom to empires. I had success with the former but, when using the same scripts for the latter, they didn't seem to do anything.
This is an example of the option section of the event that triggers to make your kingdom the de jure liege of your duchy. This works fine.
Here is an example of the portion that is supposed to make your empire the de jure liege of a kingdom.
They both work off of the exact same trigger for the event. When the one for the duchy fires, whatever duchies there are become part of the kingdom. Whenever the one for the kingdom fires, an option shows that you can click but nothing happens.
If this is a bug could it be fixed please? If it is not a bug could it be...fixed, please?
This is an example of the option section of the event that triggers to make your kingdom the de jure liege of your duchy. This works fine.
Code:
option = {
name = "EVTOPTA66669"
if = {
limit = {
tier = KING
}
primary_title = {
ROOT = {
any_demesne_title = {
limit = {
tier = DUKE
}
de_jure_liege = PREVPREV
}
}
}
}
}
Here is an example of the portion that is supposed to make your empire the de jure liege of a kingdom.
Code:
option = {
name = "EVTOPTA66669"
if = {
limit = {
tier = EMPEROR
}
primary_title = {
ROOT = {
any_realm_title = {
limit = {
tier = KING
}
de_jure_liege = PREVPREV
}
}
}
}
}
They both work off of the exact same trigger for the event. When the one for the duchy fires, whatever duchies there are become part of the kingdom. Whenever the one for the kingdom fires, an option shows that you can click but nothing happens.
If this is a bug could it be fixed please? If it is not a bug could it be...fixed, please?
Last edited:
Upvote
0