• 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.
Showing developer posts only. Show all posts in this thread.
I believe this should work:

Code:
		liege = {
			NOT = {
				any_vassal = { 
					higher_tier_than = baron
					NOT = { opinion = { who = PREV value = 0  } }
				}
			}
		}

Using LIEGE as you did in your example is a special case that only works in very few places. Use the previous scope (prev) instead. And tier = X, unlike other triggers, does not mean >= but just equal to. Use the higher_tier_than instead.