execVM: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 41: | Line 41: | ||
GOOD POINT: | GOOD POINT: | ||
sqf functions launched with execVM will run | sqf functions launched with execVM will run asynchronously from its caller script/function. | ||
It is possible to manage multi-threading development, by using: | |||
-handle script returned by execVM | -handle script returned by execVM | ||
- | -force the thread to termninate by using 'terminate' command | ||
- | -synchronise a script by using 'ScriptDone' command | ||
BAD POINT: | BAD POINT: | ||
-sqf funcion cannot return value (because execVM is | -sqf funcion cannot return value (because execVM is already returning the thread Handle) | ||
-the variable _time does not work in sqf called with execVM command | -the variable _time does not work in sqf called with execVM command |
Revision as of 07:23, 7 January 2007
Description
- Description:
- Compile and execute SQF Script. Argument is passed to the script as local variable _this. The Script is first searched for in the mission folder, then in the campaign scripts folder and finally in the global scripts folder.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
var = player execVM "test.sqf"
Additional Information
- See also:
- SQF syntax
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
- Posted on January 5, 2007 - 12:30
- Giova
- More about the Returned value: the type 'Script' returned by this command, is in fact a kind of 'Thread Handle'. GOOD POINT: sqf functions launched with execVM will run asynchronously from its caller script/function. It is possible to manage multi-threading development, by using: -handle script returned by execVM -force the thread to termninate by using 'terminate' command -synchronise a script by using 'ScriptDone' command BAD POINT: -sqf funcion cannot return value (because execVM is already returning the thread Handle) -the variable _time does not work in sqf called with execVM command