breakOut: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>") |
||
Line 38: | Line 38: | ||
|r2= [[Anything]] - Will return '''value''' | |r2= [[Anything]] - Will return '''value''' | ||
|x1= < | |x1= <sqf>scopeName "main"; | ||
while {true} do { | while {true} do { | ||
scopeName "loop1"; | scopeName "loop1"; | ||
Line 48: | Line 48: | ||
}; | }; | ||
sleep 1; | sleep 1; | ||
};</ | };</sqf> | ||
|x2= < | |x2= <sqf>call { | ||
scopeName "main"; | scopeName "main"; | ||
call { | call { | ||
Line 56: | Line 56: | ||
}; | }; | ||
345 | 345 | ||
}; // call returns 123</ | }; // call returns 123</sqf> | ||
|x3= < | |x3= <sqf>call { | ||
scopeName "Main"; // Parent Main | scopeName "Main"; // Parent Main | ||
call { | call { | ||
Line 64: | Line 64: | ||
"String" breakOut "Main"; // Will break out of child main and return "String" to parent main | "String" breakOut "Main"; // Will break out of child main and return "String" to parent main | ||
}; | }; | ||
};</ | };</sqf> | ||
|seealso= [[scopeName]] [[breakTo]] [[exitWith]] | |seealso= [[scopeName]] [[breakTo]] [[exitWith]] | ||
}} | }} |
Revision as of 10:21, 13 May 2022
Description
- Description:
- Breaks out of the scope with given name.
- An unknown scopeName name will cause the script error
Generic error in expression
- If multiple scopes with the same name exist, the command will break out the nearest scope. See Example 3.
- An unknown scopeName name will cause the script error
- Groups:
- Program Flow
Syntax
- Syntax:
- breakOut name
- Parameters:
- name: String - Name of the scope which was previously set with scopeName.
""
will exit the current scope. - Return Value:
- Nothing
Alternative Syntax
- Syntax:
- value breakOut name
- Parameters:
- value: Anything - A value to return
- name: String - Name of the scope which was previously set with scopeName.
""
will exit the current scope. - Return Value:
- Anything - Will return value
Examples
- Example 1:
- Example 2:
- Example 3:
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
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