else: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Game version" to "|Game version=")
m (Text replacement - " " to " ")
 
(28 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|ELSE]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.96|ELSE]]
[[Category:Scripting Commands ArmA|ELSE]]
[[Category:Scripting Commands ArmA2|ELSE]]
[[Category:Scripting Commands Arma 3|ELSE]]
[[Category:Command Group: Program Flow|ELSE]]


|game1= ofp
|version1= 1.85


{{Command|Comments=
|game2= ofpe
____________________________________________________________________________________________
|version2= 1.00


| ofpr |Game name=
|game3= arma1
|version3= 1.00


|1.85|Game version=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Executes [[else]] code when [[if]] condition returns [[false]]|DESCRIPTION=
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50


| ifCode '''else''' elseCode |SYNTAX=
|game6= tkoh
|version6= 1.00


|p1= ifCode: [[Code]] |PARAMETER1=
|game7= arma3
|version7= 0.50


|p2= elseCode: [[Code]]|PARAMETER2=
|gr1= Program Flow


| [[Array]] |RETURNVALUE=
|descr= Executes [[else]] code when [[if]] condition returns [[false]].
____________________________________________________________________________________________


|x1= <code>[[if]] (a > b) [[then]] { c = 0 } [[else]] { c = 1 };</code> |EXAMPLE1=
|s1= ifCode [[else]] elseCode


|x2= <code>[[if]] (a < b) [[then]] {
|p1= ifCode: [[Code]]
    [[hint]] "B is greater than A";
} [[else]] {
    [[hint]] "A is greater than B";
};</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[Control Structures]], [[if]], [[then]] |SEEALSO=
|p2= elseCode: [[Code]]


}}
|r1= [[Array]]


<h3 style="display:none">Notes</h3>
|x1= <sqf>if (a > b) then { c = 0 } else { c = 1 };</sqf>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>
</dl>
if (a < b) then {
hint "B is greater than A";
} else {
hint "A is greater than B";
};
</sqf>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[Control Structures]] [[if]] [[then]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
}}

Latest revision as of 12:11, 27 July 2022

Hover & click on the images for description

Description

Description:
Executes else code when if condition returns false.
Groups:
Program Flow

Syntax

Syntax:
ifCode else elseCode
Parameters:
ifCode: Code
elseCode: Code
Return Value:
Array

Examples

Example 1:
if (a > b) then { c = 0 } else { c = 1 };
Example 2:
if (a < b) then { hint "B is greater than A"; } else { hint "A is greater than B"; };

Additional Information

See also:
Control Structures if then

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