Okay I have a trigger with conditions like this: The number of Ultralisks in region1 =0. The number of siege tanks in region1=0. Or The number of Ultralisks in region2 =0. The number of siege tanks in region2=0 Or The number of Ultralisks in region3 =0. The number of siege tanks in region3=0
For some reason, the trigger is acting like the bold part is the only thing there and completely ignores everything else. What am I doing wrong? How do I make it so the trigger functions when one of these things is true?
I had it like the second one, but if you are supposed to do it the first way, how should I have done it? I want this set of conditions to be fulfilled or this set, not four different individual ones.
Okay I have a trigger with conditions like this: The number of Ultralisks in region1 =0. The number of siege tanks in region1=0. Or The number of Ultralisks in region2 =0. The number of siege tanks in region2=0 Or The number of Ultralisks in region3 =0. The number of siege tanks in region3=0
For some reason, the trigger is acting like the bold part is the only thing there and completely ignores everything else. What am I doing wrong? How do I make it so the trigger functions when one of these things is true?
Thanks for your help!!
have you did like (second is wrong)
or
@Nerfpl: Go
I had it like the second one, but if you are supposed to do it the first way, how should I have done it? I want this set of conditions to be fulfilled or this set, not four different individual ones.
Thanks for your help!
@MrZentors: Go
What or does, is it takes any one of the conditions INSIDE of it, and if they return true, then or will return true.
Now here's where it may get tricky. You can stick an "AND" inside your or. So we end up with
If we take the above condition. That will return true if A is 1 and B is 2 OR C is 3 and D is 4.
Thank you for clearing things up I can fix my map now!
Thanks a ton!