if: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
((sorry, but I'm too lazy to click minor edit all evertime...))
m (Category added)
Line 2: Line 2:
[[Category:Scripting Commands OFP 1.96|IF]]
[[Category:Scripting Commands OFP 1.96|IF]]
[[Category:Scripting Commands ArmA|IF]]
[[Category:Scripting Commands ArmA|IF]]
 
[[Category:Control Flows ArmA|IF]]


<h2 style="color:#000066">'''if ''condition'''''</h2>
<h2 style="color:#000066">'''if ''condition'''''</h2>

Revision as of 19:46, 21 July 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