I'm working on a new plot that would allow you to kill a vassal that hates you. The objective is to give higher lords more plots to work with.
It kind of sort of works, but not really. If I monkey around with it (removing some conditions or making slight alterations), it will sometimes show up for some lieges but then not others. I can never make it work quite the way I think it should be working. I'm kind of perplexed.
Any thoughts?
It kind of sort of works, but not really. If I monkey around with it (removing some conditions or making slight alterations), it will sometimes show up for some lieges but then not others. I can never make it work quite the way I think it should be working. I'm kind of perplexed.
Any thoughts?
Code:
# Target character scope
allow = {
AND = {
AND = {
# They dislike me
NOT = { opinion = { who = FROM value = -75 } }
# I dislike them
OR = {
ai = no # human
NOT = { opinion = { who = ROOT value = -75 } }
}
}
# They are my vassal
FROM = {
overlord_of = ROOT
}
}
}