I'm trying to have a condition check to see if an enemy has entered the same Y plane (line) as my unit. This is part of a set of triggers I'm writing, so data editor isn't really applicable. Basically I want it so when a unit enters the same plane, that unit will change it's course. I was hoping to be able to compare their Y coordinates in a condition, but of course it's never that simple. I can compare "Position of Unit", but I'm not sure what good that does.
I'm trying to have a condition check to see if an enemy has entered the same Y plane (line) as my unit. This is part of a set of triggers I'm writing, so data editor isn't really applicable. Basically I want it so when a unit enters the same plane, that unit will change it's course. I was hoping to be able to compare their Y coordinates in a condition, but of course it's never that simple. I can compare "Position of Unit", but I'm not sure what good that does.
@HeroicPrinny: Go
You can compare y of point, the point will be position of unit. It should be something like
Y of (position of Triggering Unit) == Y of (position of Your Unit)
@progammer: Go
Thank you, this is what I was looking for.