if: Difference between revisions

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





Revision as of 15:14, 4 May 2006


if condition


Operand types:

condition: Boolean

Type of returned value:

If Type

Compatibility:

Added in version 1.85

Description:

First part of if command.


Example:

if (a>b) then {a=b}


Comments:

Standard syntax = if a then b

Alternative syntax = ? a : b

See also: else