setTriggerStatements: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 34: Line 34:
'''Example:'''
'''Example:'''


trigger '''setTriggerStatements''' ["this", "ok = true", "ok = false"]
trigger '''setTriggerStatements''' ["this", "ok = [[true]]", "ok = [[false]]"]

Revision as of 22:18, 4 July 2006


trigger setTriggerStatements [cond, activ, desactiv]


Operand types:

trigger: Object

[cond, activ, desactiv]: Array

Type of returned value:

Nothing

Compatibility:

Version 1.86 required.

Description:

The first argument can modify the condition of when the trigger is activated.

The result of the activation defined by trigger activation is in variable this.

Variable thisList contains all vehicles which caused the activation.

Activ and desactiv expressions are launched upon trigger activation / deactivation.


Example:

trigger setTriggerStatements ["this", "ok = true", "ok = false"]