then: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
[[Category:Scripting Commands|THEN]]
[[Category:Scripting Commands|THEN]]
[[Category:Scripting Commands OFP 1.97|THEN]]
[[Category:Scripting Commands OFP 1.96|THEN]]
[[Category:Scripting Commands ArmA|THEN]]
[[Category:Scripting Commands ArmA|THEN]]



Revision as of 21:04, 1 June 2006


if then else


Operand types:

if: If Type

else: Array

Type of returned value:

Anything

Compatibility:

Added in version 1.85

Description:

First or second element of array is executed depending on result of if condition.

Result of the expression executed is returned as a result (result may be nothing).


Example:

if (a>b) then {c=1} else {c=2}; if (a>b) then [{c=1},{c=2}]