breakTo: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
Lou Montana (talk | contribs) m (Text replacement - "Nelis.75733126" to "Nelis75733126") |
||
(72 intermediate revisions by 9 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| | |game1= arma1 | ||
|version1= 1.00 | |||
|1.00 | |game2= arma2 | ||
|version2= 1.00 | |||
| | |game3= arma2oa | ||
|version3= 1.50 | |||
|game4= tkoh | |||
|version4= 1.00 | |||
| | |game5= arma3 | ||
|version5= 0.50 | |||
| | |gr1= Program Flow | ||
| | |descr= Breaks block to scope named ''name''. | ||
|x1= < | Scope name can be assigned using the [[scopeName]] command. | ||
while { | |||
|s1= [[breakTo]] name | |||
while { | |||
|p1= name: [[String]] | |||
if (condition1) then { | |||
if (condition2) then { | |r1= [[Nothing]] | ||
|x1= <sqf> | |||
scopeName "main"; | |||
while { true } do | |||
{ | |||
scopeName "loop1"; | |||
while { true } do | |||
{ | |||
scopeName "loop2"; | |||
if (condition1) then { breakTo "main" }; // breaks all scopes and return to "main" | |||
if (condition2) then { breakOut "loop2" }; // breaks scope named "loop2" | |||
sleep 1; | |||
}; | }; | ||
sleep 1; | |||
}; | }; | ||
</ | </sqf> | ||
|seealso= [[scopeName]] [[breakOut]] [[exitWith]] | |||
}} | }} | ||
< | {{Note | ||
< | |user= Nelis75733126 | ||
|timestamp= 20170518181900 | |||
|text= 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> | |||
Example: | |||
<sqf> | |||
scopeName "something"; | |||
if true then | |||
{ | |||
breakTo "something"; | |||
_v = 0; // this line will be skipped | |||
}; | |||
_a = 0; // this is where script execution will jump to. | |||
</sqf> | |||
}} | |||
Latest revision as of 15:38, 29 June 2024
Description
- Description:
- Breaks block to scope named name. Scope name can be assigned using the 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 May 18, 2017 - 18:19 (UTC)
-
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