BIS fnc execVM: Difference between revisions
Lou Montana (talk | contribs) m (Some wiki formatting)  | 
				Lou Montana (talk | contribs)  m (Fix Script link)  | 
				||
| Line 8: | Line 8: | ||
|eff= local  | |eff= local  | ||
|descr=[[execVM]] desired script with desired argument(s). This function is only really useful when combined with [[BIS_fnc_MP]] to execute a script remotely.  | |descr= {{Feature|obsolete|use [[remoteExec]]/[[remoteExecCall]] instead.|arma3|1.50}}  | ||
[[execVM]] desired script with desired argument(s). This function is only really useful when combined with [[BIS_fnc_MP]] to execute a script remotely.  | |||
|s1= filename call [[BIS_fnc_execVM]]  | |s1= filename call [[BIS_fnc_execVM]]  | ||
| Line 15: | Line 16: | ||
|p1= filename: [[String]]  | |p1= filename: [[String]]  | ||
|r1= [[Script]] -   | |r1= [[Script Handle]] - can be used to determine (via [[scriptDone]]) when the script has finished.  | ||
|s2= [  | |s2= [arguments, filename] call [[BIS_fnc_execVM]]  | ||
|p21=   | |p21= arguments: [[Anything]] - arguments are passed to script as magic variable [[Magic Variables#this|_this]].  | ||
|p22= filename: [[String]]  | |p22= filename: [[String]]  | ||
|r2= [[Script]] -   | |r2= [[Script Handle]] - can be used to determine (via [[scriptDone]]) when the script has finished.  | ||
|x1= <sqf>"Bonus\initializeExtras.sqf" call BIS_fnc_execVM;</sqf>  | |x1= <sqf>"Bonus\initializeExtras.sqf" call BIS_fnc_execVM;</sqf>  | ||
|x2= <sqf>[player,"reposition.sqf"] call BIS_fnc_execVM;</sqf>  | |x2= <sqf>[player, "reposition.sqf"] call BIS_fnc_execVM;</sqf>  | ||
|x3= <sqf>  | |x3= <sqf>  | ||
Latest revision as of 09:50, 29 December 2022
Description
- Description:
 - execVM desired script with desired argument(s). This function is only really useful when combined with BIS_fnc_MP to execute a script remotely.
 - Execution:
 - call
 - Groups:
 - Program Flow
 
Syntax
- Syntax:
 - filename call BIS_fnc_execVM
 - Parameters:
 - filename: String
 - Return Value:
 - Script Handle - can be used to determine (via scriptDone) when the script has finished.
 
Alternative Syntax
- Syntax:
 - [arguments, filename] call BIS_fnc_execVM
 - Parameters:
 - arguments: Anything - arguments are passed to script as magic variable _this.
 - filename: String
 - Return Value:
 - Script Handle - can be used to determine (via scriptDone) when the script has finished.
 
Examples
- Example 1:
 - Example 2:
 - Example 3:
 - // before Arma 3 v1.50 [[[_param1, _param2], "addBonus.sqf"], "BIS_fnc_execVM", true] call BIS_fnc_MP; // since Arma 3 v1.50 [[_param1, _param2], "addBonus.sqf"] remoteExec ["execVM"];
 
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