BIS fnc MPexec: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (see also)
No edit summary
Line 40: Line 40:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
 
{{GVI|arma3|1.48}}
* In this version, scripted framework for remote execution will be replaced by engine based solution.
* The function bis_fnc_mpExec won't exist anymore. It's functionality will be completely covered by remoteExec and remoteExecCall commands.
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>

Revision as of 13:51, 8 June 2015


Hover & click on the images for description

Description

Description:
/*

	Description:
	Execute received remote execution

	Parameter(s):
	_this select 0: STRING - Packet variable name (always "BIS_fnc_MP_packet")
	_this select 1: ARRAY - Packet value (sent by BIS_fnc_MP function; see it's description for more details)
	
	Returns:
	BOOL - true if function was executed successfuly
*/
(Placeholder description extracted from the function header by BIS_fnc_exportFunctionsToWiki)
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
Syntax needed
Return Value:
Return value needed

Examples

Example 1:

Additional Information

See also:
BIS_fnc_MP

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

Arma 3 logo black.png1.48
  • In this version, scripted framework for remote execution will be replaced by engine based solution.
  • The function bis_fnc_mpExec won't exist anymore. It's functionality will be completely covered by remoteExec and remoteExecCall commands.

Bottom Section