then: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (added array example)
m (Text replacement - "|game5= arma2oa |version5= 1.51 " to "|game5= arma2oa |version5= 1.50 ")
Line 19: Line 19:
|game5= arma2oa
|game5= arma2oa


|version5= 1.51
|version5= 1.50


|game6= tkoh
|game6= tkoh

Revision as of 18:54, 27 April 2021

Hover & click on the images for description

Description

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.
Variables declared inside the code block are private to that block. If you need to use the variables outside of the block, declare them before the if (condition) then {code}; statement.
Groups:
Program Flow

Syntax

Syntax:
if then else
Parameters:
if: If Type
else: Code or Array - Can either be a code block or an array with two code elements. See Example 3
Return Value:
Anything

Examples

Example 1:
if (a > b) then { c = 1 };
Example 2:
if (a > b) then { c = 1; } else { c = 2; };
Example 3:
if (random 1 > 0.5) then [{hint "> 1";}, {hint "< 1";}];

Additional Information

See also:
Control Structuresifelse

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note