breakTo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "IT07" to "Nelis.75733126") |
m (better clarification.) |
||
Line 51: | Line 51: | ||
<dt class="note">[[User:Nelis.75733126|Nelis.75733126]]</dt> | <dt class="note">[[User:Nelis.75733126|Nelis.75733126]]</dt> | ||
<dd class="note"> | <dd class="note"> | ||
I wish to clarify the behaviour of this command by saying that the <sqf inline>breakTo</sqf> command will literally break the scope in which it has been placed, and continue reading whatever is after and outside of that scope.<br> | |||
<sqf>scopeName " | Example: | ||
<sqf>scopeName "something"; | |||
if true then | if true then | ||
{ | { | ||
breakTo " | breakTo "something"; | ||
}; | _v = 0; // this line will be skipped | ||
}; | |||
_a = 0; // this is where script execution will jump to.</sqf> | |||
</dd> | </dd> | ||
</dl> | </dl> |
Revision as of 19:57, 16 April 2024
Description
- Description:
- Breaks block to scope named name. Nil is returned. Scope name can be assigned using scopeName command.
- Groups:
- Program Flow
Syntax
Examples
- Example 1:
Additional Information
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
- Posted on 2017-05-18 - 18:19 (UTC)
- Nelis.75733126
-
I wish to clarify the behaviour of this command by saying that the breakTo command will literally break the scope in which it has been placed, and continue reading whatever is after and outside of that scope.
Example:
Categories:
- Scripting Commands
- Introduced with Armed Assault version 1.00
- ArmA: Armed Assault: New Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Program Flow