execVM: Difference between revisions
Jump to navigation
Jump to search
m (script_(handle) return datatype) |
Killzone Kid (talk | contribs) (isnull supported in arma 3) |
||
Line 22: | Line 22: | ||
|p2= filename: [[String]] |= Parameter 2 | |p2= filename: [[String]] |= Parameter 2 | ||
| [[Script_(Handle)|Script Handle]] - can be used to determine (via [[scriptDone]]) when the spawned script has finished.|= Return value | | [[Script_(Handle)|Script Handle]] - can be used to determine (via [[scriptDone]] (also via [[isNull]] in Arma 3)) when the spawned script has finished.|= Return value | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 29: | Line 29: | ||
|x2= <code>_handle = [[player]] [[execVM]] "test.sqf"; | |x2= <code>_handle = [[player]] [[execVM]] "test.sqf"; | ||
[[waitUntil]] {[[scriptDone]] _handle};</code> |= Example 2 | [[waitUntil]] {[[scriptDone]] _handle};</code> |= Example 2 | ||
|x3= In Arma 3 this is also possible: <code>_handle = [[execVM]] "123.sqf"; | |||
[[waitUntil]] {[[isNull]] _handle};</code> |= Example 2 | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 19:58, 7 December 2014
Description
- Description:
- Compile and execute SQF Script.
The optional argument is passed to the script as local variable _this.
Script is compiled every time you use this command.
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
- Syntax:
- argument(s) execVM filename
- Parameters:
- argument(s): Any Value(s) - Optional. Argument(s) accessible as _this in the script
- filename: String
- Return Value:
- Script Handle - can be used to determine (via scriptDone (also via isNull in Arma 3)) when the spawned script has finished.
Examples
- Example 1:
_handle = execVM "test.sqf";
- Example 2:
_handle = player execVM "test.sqf"; waitUntil {scriptDone _handle};
- Example 3:
- In Arma 3 this is also possible:
_handle = execVM "123.sqf"; waitUntil {isNull _handle};
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
- 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 terminate 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
Notes
- Posted on November 23, 2010 - 15:56
- Kabilen
- Passing variables to the script file
To pass multiple variables to the script file, use an array e.g:
null = [myunit,1234] execVM "test.sqf";
Now within test.sqf to access the elements, use the following:
_myunit = _this select 0;
_myvar = _this select 1;