OFPEC Forum

Editors Depot - Mission Editing and Scripting => OFP - Editing/Scripting General => Topic started by: MasterSniper on 08 Jun 2003, 02:15:21

Title: Quick trigger question
Post by: MasterSniper on 08 Jun 2003, 02:15:21
I'm having a bit of trouble with triggers here.

I have a trigger that activates when you go inside, but it also has to have another condition, "rest1", activated for the trigger to work.

Unfortunatly, as soon as the condition is activated the trigger activates, even without anyone actually activating it sort of thing. As in it doesn't wait for me to get inside the area, the trigger just fires off as soon as it's condition goes off/

How can I stop it from doing this?
Title: Re:Quick trigger question
Post by: Chris Death on 08 Jun 2003, 02:30:24
You need two combine two conditions here by using the
AND statement.

THIS AND REST1

as condition makes the trigger wait for THIS and for REST1

THIS belongs to the settings you've defined for the trigger
to be activated (in the trigger activations box above)

REST1 - you should know where it becomes true  ;)

~S~ CD
Title: Re:Quick trigger question
Post by: MasterSniper on 08 Jun 2003, 02:31:20
Thanks a bunch.