OFPEC Forum
Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting General => Topic started by: j-man on 24 Jan 2004, 03:06:14
-
I have a trigger that detects if all west units are not present. What I need is for the trigger to exclude the player. Would something like this work?
this && (!player present) || this && (player present) ???
Thanks is advance :)
-
Try this out:
condition: (count (thislist - [player])) == 0
-
or
?({_x in thislist} WEST countside (thislist - [player])) == 0
???