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

From Bohemia Interactive Community
Jump to navigation Jump to search
m (see also & formate)
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Send function for remote execution (and executes locally if conditions are met) . |= Description
| Send function for remote execution (and executes locally if conditions are met) . |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [params, functionName, target, isSpawn, isPersistent] call BIS_fnc_MP; |= Syntax
| [params, functionName, target, isSpawn, isPersistent] call BIS_fnc_MP; |SYNTAX=


|p1= '''params''': [[Anything]] - function params |=
|p1= '''params''': [[Anything]] - function params |=
Line 18: Line 18:
|p5= '''isPersistent''': [[Boolean]] - true for persistent call (will be called now and for every JIP client) [default: false] |=
|p5= '''isPersistent''': [[Boolean]] - true for persistent call (will be called now and for every JIP client) [default: false] |=


| [[Array]] - sent packet |= Return value
| [[Array]] - sent packet |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
Line 30: Line 30:
|exec= call |=
|exec= call |=


| [[BIS_fnc_MPexec]] |= See also
| [[BIS_fnc_MPexec]] |SEEALSO=


}}
}}

Revision as of 15:32, 7 April 2019

Hover & click on the images for description

Description

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

Syntax

Syntax:
[params, functionName, target, isSpawn, isPersistent] call 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"] call BIS_fnc_MP; Logs a message for every player who's currently joined.
Example 2:
[["Hello World"],"BIS_fnc_guiMessage",nil,true,true ] call BIS_fnc_MP; Send a message containing "Hello World" to every player, including the ones who joins later using JIP.

Additional Information

See also:
BIS_fnc_MPexec

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)".