call: Difference between revisions
| Lou Montana (talk | contribs) m (Text replacement - "{{arma}}" to "{{arma1}}") | Lou Montana (talk | contribs)   (Add un/scheduled informative note) | ||
| Line 11: | Line 11: | ||
| ____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | Adds given set of compiled instructions to the current stack and waits for it to finish and return, provides an option to pass arguments to the executed [[Code]]. | | Adds given set of compiled instructions to the current stack and waits for it to finish and return, provides an option to pass arguments to the executed [[Code]]. | ||
| {{ | {{Informative | [[call]]ed code runs in the scope it is called, as if the code were copy-pasted there, [[Scheduler|(un)scheduled environment]] included.}}   | ||
| {{Important | This command accepts [[String]] (as well as [[Code]]) only in {{GameCategory|ofp|link=y}}. For later titles, see [[compile]].}}|Description= | |||
| ____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Line 35: | Line 36: | ||
| |x3= <code>_sum = [1, 2] [[call]] { ([[_this]] [[select]] 0) + ([[_this]] [[select]] 1); }; | |x3= <code>_sum = [1, 2] [[call]] { ([[_this]] [[select]] 0) + ([[_this]] [[select]] 1); }; | ||
| [[hint]] [[str]] _sum; {{ | [[hint]] [[str]] _sum; {{cc|displays 3}}</code> |Example 3= | ||
| |x4= <code>123 [[call]] [[compile]] "[[hint]] [[str]] _this;";</code> |Example 4= | |x4= <code>123 [[call]] [[compile]] "[[hint]] [[str]] _this;";</code> |Example 4= | ||
| Line 54: | Line 55: | ||
| <h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
| [[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands OFP 1.96|{{uc:{{PAGENAME}}}}]] | ||
| [[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]] | ||
| Line 61: | Line 61: | ||
| [[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]] | ||
| [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | ||
Revision as of 20:26, 1 January 2021
Description
- Description:
- Adds given set of compiled instructions to the current stack and waits for it to finish and return, provides an option to pass arguments to the executed Code.
- Groups:
- Program Flow
Syntax
- Syntax:
- call code
- Parameters:
- code: Code - compiled instructions
- Return Value:
- Anything - The last value given in the function is returned. See the topic Function for more information.
Alternative Syntax
- Syntax:
- args call code
- Parameters:
- args: Anything - Arguments that are passed to the function in the _this variable
- code: Code - compiled instructions
- Return Value:
- Anything - The last value given in the function is returned. See the topic Function for more information.
Examples
- Example 1:
- call { hint str 123; };
- Example 2:
- 123 call { hint str _this; };
- Example 3:
- _sum = [1, 2] call { (_this select 0) + (_this select 1); }; hint str _sum; // displays 3
- Example 4:
- 123 call compile "hint str _this;";
- Example 5:
- _result = 123 call compile preprocessFileLineNumbers "myFile.sqf";
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
Notes
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: Program Flow
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- Scripting Commands Armed Assault
- Scripting Commands Arma 2
- Scripting Commands Take On Helicopters
- Scripting Commands Arma 3
 
	