OFPEC Forum
Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting General => Topic started by: angusjm on 07 Sep 2002, 21:54:25
-
How do you make a trigger be activated by men only?
-
Any type of man? It should be somthing along the lines of;
"man" CountType ThisList > 0
That should be your condition. Now technically that will activate when a man enters the trigger area. It could be a west soldier, an east soldier or a civilian. But only someone on foot.
-
will that still work with a not present trigger?
-
You want to see when there are no men present in the trigger?
In addtion to the top, you should also add the detection box to EAST, WEST, EVERYONE etc, and THAT will detect either east men, west men, all the men etc.
If you want it not present then change the count to;
"man" CountType ThisList < 1
This will detect men numbers of less than one (as in 0, ie not present). You should check the side box in the middle for the side of the men you want to detect, as outlined above.
-
thanks.