BIS fnc MP (Take On Helicopters): Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Created page with "{{Function|= Comments ____________________________________________________________________________________________ | TKOH |= Game name |1.00|= Game version ____________________...")
 
(overriding displaytitle)
Line 45: Line 45:
[[Category:Take_On_Helicopters:_Functions|mp]]
[[Category:Take_On_Helicopters:_Functions|mp]]
[[Category:Function Group: Debug|mp]]
[[Category:Function Group: Debug|mp]]
{{DISPLAYTITLE:BIS_fnc_MP (Take On Helicopters)}}<!-- placed at the end to override DISPLAYTITLE in Template:Function -->

Revision as of 15:13, 1 April 2014

Hover & click on the images for description

Description

Description:
Send function for remote execution (and executes locally if conditions are met) .
Execution:
spawn
Groups:
Uncategorised

Syntax

Syntax:
[params, functionName, target, isSpawn, isPersistent] spawn BIS_fnc_MP;
Parameters:
params: Anything - function params
functionName: String - function name
target: Object - function will be executed only where unit is local [default: everyone]
isSpawn: Boolean - true for calling function using 'spawn' command (otherwise 'call' is used) [default: false]
isPersistent: Boolean - true for persistent call (will be called now and for every JIP client) [default: false]
Return Value:
Array - sent packet

Examples

Example 1:
["Imma spamming your log!","BIS_fnc_log"] spawn BIS_fnc_MP; Logs a message for every player who's currently joined.
Example 2:
[["Hello World"],"BIS_fnc_guiMessage",nil,true,true] spawn BIS_fnc_MP; Send a message containing "Hello World" to every player, including the ones who joins later using JIP.

Additional Information

See also:
See also needed

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

Bottom Section

Warning: Display title "BIS_fnc_MP (Take On Helicopters)" overrides earlier display title "BIS_fnc_MP_(Take_On_Helicopters)".