Home   Help Search Login Register  

Author Topic: Trigger Activation  (Read 1239 times)

0 Members and 2 Guests are viewing this topic.

Offline angusjm

  • Contributing Member
  • **
    • Virtual SAS
Trigger Activation
« on: 07 Sep 2002, 21:54:25 »
How do you make a trigger be activated by men only?

Offline icarus_uk

  • Members
  • *
  • LiarLiarPants Inflame True
    • [furryclan]
Re:Trigger Activation
« Reply #1 on: 07 Sep 2002, 23:52:02 »
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.

Offline angusjm

  • Contributing Member
  • **
    • Virtual SAS
Re:Trigger Activation
« Reply #2 on: 08 Sep 2002, 00:26:28 »
will that still work with a not present trigger?

Offline icarus_uk

  • Members
  • *
  • LiarLiarPants Inflame True
    • [furryclan]
Re:Trigger Activation
« Reply #3 on: 08 Sep 2002, 00:33:30 »
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.

Offline angusjm

  • Contributing Member
  • **
    • Virtual SAS
Re:Trigger Activation
« Reply #4 on: 08 Sep 2002, 15:03:12 »
thanks.