Home
Intel Depot
Editors Depot
Missions Depot
Addons Depot
Forum
Home
Help
Search
Login
Register
OFPEC Forum
»
Editors Depot - Mission Editing and Scripting
»
OFP - Editing/Scripting General
(Moderators:
h-
,
savedbygrace
,
Gruntage
) »
un-title-able problem
« previous
next »
Send this topic
Print
Pages: [
1
]
Go Down
Author
Topic: un-title-able problem (Read 604 times)
0 Members and 1 Guest are viewing this topic.
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?
Logged
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
»
Logged
macguba
Former Staff
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
Logged
Plenty of
reviewed ArmA missions
for you to play
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
Logged
Send this topic
Print
Pages: [
1
]
Go Up
« previous
next »
OFPEC Forum
»
Editors Depot - Mission Editing and Scripting
»
OFP - Editing/Scripting General
(Moderators:
h-
,
savedbygrace
,
Gruntage
) »
un-title-able problem
Top of page