Warning: include(/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php): failed to open stream: No such file or directory in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Warning: include(): Failed opening '/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php' for inclusion (include_path='.:/usr/local/lib/php') in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Notice: Undefined index: OFPEC in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152
    Home   Help Login Register  

Author Topic: Quick trigger question  (Read 894 times)

0 Members and 1 Guest are viewing this topic.

MasterSniper

  • Guest
Quick trigger question
« 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?

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:Quick trigger question
« Reply #1 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
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

MasterSniper

  • Guest
Re:Quick trigger question
« Reply #2 on: 08 Jun 2003, 02:31:20 »
Thanks a bunch.