Home   Help Search Login Register  

Author Topic: Trigger Question...  (Read 970 times)

0 Members and 1 Guest are viewing this topic.

Offline angusjm

  • Contributing Member
  • **
    • Virtual SAS
Trigger Question...
« on: 28 Sep 2002, 13:37:32 »
This may sound simple, but I can't get it to work...

I want the mission to end when 3 objects are destroyed (eboat1, eboat2, etruck) and there are no enemies present in a certain area.  I have tried making a trigger with East not Present in the condition field and not (alive eboat1); not (alive eboat2); not (alive etruck) in the condition field.
It doesn't work  ???

Any suggestions?

Offline icarus_uk

  • Members
  • *
  • LiarLiarPants Inflame True
    • [furryclan]
Re:Trigger Question...
« Reply #1 on: 28 Sep 2002, 14:04:13 »
First setup the top boxes to a Not Present condition, obviously selecting the side that are enemies and making them not present.  Then in the condition put;

This && !(alive eboat1) && !(alive eboat2) && !(Alive etruck)

Offline angusjm

  • Contributing Member
  • **
    • Virtual SAS
Re:Trigger Question...
« Reply #2 on: 28 Sep 2002, 14:19:05 »
Thanks.