spawn: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
(this is not a function...) |
||
Line 7: | Line 7: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Starts running a new script ([[ | | Starts running a new script ([[SQF]]). Additional arguments are passed in local _this variable. | ||
The new script | The new script is running in parallel, spawn does not wait for it to be done, instead spawn returns a [[Script (Handle)|Script]] handle. |= Description | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 18: | Line 18: | ||
|p2= code: [[Code]] |= Parameter 2 | |p2= code: [[Code]] |= Parameter 2 | ||
| [[Script]] |= Return value | | [[Script (Handle)|Script]] |= Return value | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 27: | Line 27: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[call_body|call function]], [[call_code|call code]], [[compile]], [[preprocessFile]] |= See also | | [[call_body|call function]], [[call_code|call code]], [[compile]], [[preprocessFile]], [[terminate]], [[scriptDone]] |= See also | ||
}} | }} |
Revision as of 11:24, 20 January 2009
Description
- Description:
- Starts running a new script (SQF). Additional arguments are passed in local _this variable. The new script is running in parallel, spawn does not wait for it to be done, instead spawn returns a Script handle.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
[] spawn { player globalChat "This is run in parallel."; };
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