I need a bit of help with an event I'm working on. It's part one of a two part defection chain and therefore it should fire for the owner and then trigger an event that cedes it to the controller. The trigger needs to be that the province is occupied, the controller has the Steppe Horde government, and that the controller owns an adjacent province. I'd imagine the first trigger would be something like
Code:
NOT = { controlled_by = THIS }
controller = { government = steppe_horde }
but I don't know how to check that the controller owns an adjacent province. Perhaps
Code:
controller = { any_neighbor_province = { owned_by = THIS } }
or maybe
Code:
any_neighbor_province = { owned_by = controller}
Does anyone know the proper way of creating that trigger?