You need to be a vassal of either a king or emperor who has the Imperial Administration law, that's it. I managed to 90% fix it by adding in target_potential = { holder_scope = independent = yes } }. It only targets the titles the emperor personally holds now. If I can get it to only target his primary title, the issue is 100% resolved. Here's the relevant code, I tried experimenting with other scopes last night to target only the primary title but I didn't have any luck.Exactly what circumstances should occur for it to appear? Exactly what other circumstances should occur for it to be valid?
Code:
plot_byzantine_coup = {
type = realm_titles
vassal_intrigue_plot = yes
# Plotter scope
potential = {
age = 16
prisoner = no
mercenary = no
is_feudal = yes
is_landed = yes
independent = no
NOT = { trait = imbecile }
NOT = { trait = incapable }
liege = {
OR = {
tier = king
tier = emperor
}
OR = {
NOT = { is_father = ROOT is_mother = ROOT }
}
}
}
target_potential = {
holder_scope = {
independent = yes
}
}
# Target scope
allow = {
OR = {
tier = king
tier = emperor
}
is_vice_royalty = no
is_primary_holder_title = yes
has_law = imperial_administration
holder_scope = {
NOT = { reverse_has_truce = FROM }
NOT = { spouse = { character = FROM } }
}
}
}