if: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 38: | Line 38: | ||
<nowiki>= ? a : b </nowiki> | <nowiki>= ? a : b </nowiki> | ||
Compound clause syntax (multiple actions) | |||
"if a then x, y, z" | |||
or | |||
"if a then x; y; z" | |||
</dd> | </dd> | ||
<dt class="note">'''[[User:Ceeeb|Ceeeb]]'''</dt> | |||
<dd class="note"> | |||
Any variables you declare within the body of an 'if' statement (ie between the curly braces) are local to that 'if' statement, and are destroyed at the end of the statement. If you know you want to use the variable outside the 'if' statement, make sure your declare it before the if statement. | |||
</dd> | |||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 05:08, 31 January 2007
Description
- Description:
- First part of if command.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
if (a>b) then {a=b}
Additional Information
- See also:
- else Control Structures
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
Notes
- Posted on August 4, 2006 - 10:55
- hardrock
- Notes from before the conversion: Standard syntax: = if a then b Alternative syntax = ? a : b Compound clause syntax (multiple actions) "if a then x, y, z" or "if a then x; y; z"
- Ceeeb
- Any variables you declare within the body of an 'if' statement (ie between the curly braces) are local to that 'if' statement, and are destroyed at the end of the statement. If you know you want to use the variable outside the 'if' statement, make sure your declare it before the if statement.
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint: Resistance version 1.85
- Operation Flashpoint: Resistance: New Scripting Commands
- Operation Flashpoint: Resistance: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands OFP 1.96
- Scripting Commands ArmA
- ArmA: Control Structures
- Command Group: Program Flow