Home   Help Search Login Register  

Author Topic: un-title-able problem  (Read 604 times)

0 Members and 1 Guest are viewing this topic.

Offline ryankaplan

  • Members
  • *
  • yeah...
un-title-able problem
« on: 18 Sep 2004, 19:16:04 »
i have 3 triggers with each set to east = present. i want it so when one activates the other 2 will be un-activatable if you know what  i mean.
on the on activation fields of trigger i put;
betray1 = true
betray2 = true
betray3 = true
 
on the condition field of the triggers i tried putting;
!(betray1) &&  !(betray2)
and also tried
!(betray1 = true) && !(betray2 = true) (also tried with  == too.
and also tried
!betray1 && !betray2 (also tried with spaces in between)
and also tried
betray1 = false && betray2 = false

but none of those worked. can you please help me?

Offline THobson

  • OFPEC Patron
  • Former Staff
  • ****
Re:un-title-able problem
« Reply #1 on: 18 Sep 2004, 20:00:04 »
The condition field for trigger 3 should be:

this and not betray1 and not betray2

and the onactivation field should be:

betray3 = true

With similar arrangements for triggers 1 and 2.

(I don't like the ! && etc.  I much prefer to use the full words)


And of course you must set
betray1 = false
betray2 = false
betray3 = false

At the start of the mission
« Last Edit: 19 Sep 2004, 08:07:19 by THobson »

Offline macguba

  • Former Staff
  • ****
    • macguba's operation flashpoint page
Re:un-title-able problem
« Reply #2 on: 19 Sep 2004, 02:10:44 »
Something like this

betray1 = false

NEVER goes in a condition field.    The = sign means "set this equal to that".    If you want the condition to be that a variable is true, you just put the variable in the condition field

betray1
Plenty of reviewed ArmA missions for you to play

Offline ryankaplan

  • Members
  • *
  • yeah...
Re:un-title-able problem
« Reply #3 on: 19 Sep 2004, 10:58:32 »
yeah, i know that it is == to check but i was running out of options. anyway, thanx alot guys