Hi all,
For a mission I have 2 soldiers (s1 & s2) who must sneak to a location.
I have an enemy patrol with 4 units (pat1 - pat4), grouped as Patrol1.
Now want to make a trigger to activate a QRF as soon as any of the patrol members has a 'knowsAbout' value > 3 on s1 and/or s2.
So I came up with this trigger condition:
(pat1 knowsAbout S1 > 3 or pat1 knowsAbout S2 > 3) forEach units group Patrol1;
Not working, some boolean error.
2 Questions:
1. How can I mak this trigger work the right way?
2. Since I use 'or' (s1 OR s2), I'm not sure if it will work the way I want. What happens if a patrol member 'knowsAbout' both s1 and s2? Will the trigger still fire?
Can anyone help me with this please?
Cheers!