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

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= |p3=" to "|Parameter2= |p3=")
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).
 
{{Feature arma3 | This page is about the {{tkoh}} function version.<br><!--
-->For the (obsolete) {{arma3}} version, see [[BIS_fnc_MP]] that has since been replaced by [[remoteExec]] and [[remoteExecCall]].}} |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [params, functionName, target, isSpawn, isPersistent] call BIS_fnc_MP; |SYNTAX=
| [params, functionName, target, isSpawn, isPersistent] call [[{{PAGENAME}}|BIS_fnc_MP]] |SYNTAX=


|p1= '''params''': [[Anything]] - function params |Parameter1=
|p1= '''params''': [[Anything]] - function params |Parameter1=
|p2= '''functionName''': [[String]] - function name |Parameter2=
|p2= '''functionName''': [[String]] - function name |Parameter2=


|p3= '''target''': [[Object]] - function will be executed only where unit is local [default: everyone] |=
|p3= '''target''': [[Object]] - function will be executed only where unit is local [default: everyone] |PARAMETER3=
|p4= '''isSpawn''': [[Boolean]] - true for calling function using 'spawn' command (otherwise 'call' is used) [default: false] |=
 
|p5= '''isPersistent''': [[Boolean]] - true for persistent call (will be called now and for every JIP client) [default: false] |=
|p4= '''isSpawn''': [[Boolean]] - true for calling function using 'spawn' command (otherwise 'call' is used) [default: false] |PARAMETER4=
 
|p5= '''isPersistent''': [[Boolean]] - true for persistent call (will be called now and for every JIP client) [default: false] |PARAMETER5=


| [[Array]] - sent packet |RETURNVALUE=
| [[Array]] - sent packet |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code><nowiki>[</nowiki>"Imma spamming your log!","[[BIS_fnc_log]]"] [[call]] [[BIS_fnc_MP]];</code>
|x1= Log a message for every connected player:
Logs a message for every player who's currently joined.|Example1=
<code>["Imma spamming your log!", "[[BIS_fnc_log]]"] [[call]] [[{{PAGENAME}}|BIS_fnc_MP]];</code> |Example1=


|x2= <code><nowiki>[</nowiki>["Hello World"],"[[BIS_fnc_guiMessage]]",nil,[[true]],[[true]] ] [[call]] [[BIS_fnc_MP]];</code>
|x2= Send a message containing "Hello World" to every player, including the ones who joins later using JIP:
Send a message containing "Hello World" to every player, including the ones who joins later using JIP.|=
<code>[<nowiki/>["Hello World"], "[[BIS_fnc_guiMessage]]", nil, [[true]], [[true]]] [[call]] [[{{PAGENAME}}|BIS_fnc_MP]];</code> |Example2=
____________________________________________________________________________________________
____________________________________________________________________________________________


|exec= call |=
| [[BIS_fnc_MP|BIS_fnc_MP (Arma 3)]], [[remoteExec]], [[remoteExecCall]], [[BIS_fnc_MPexec]] |SEEALSO=
 
| [[BIS_fnc_MPexec]] |SEEALSO=
 
}}
}}


Line 44: Line 47:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>


[[Category:Take_On_Helicopters:_Functions|mp]]
 
[[Category:Function Group: Debug|mp]]
[[Category:Take_On_Helicopters:_Functions|MP]]
{{DISPLAYTITLE:BIS_fnc_MP (Take On Helicopters)}}<!-- placed at the end to override DISPLAYTITLE in Template:Function -->
[[Category:Function Group: Debug|MP]]
 
<!--
placed at the end to override DISPLAYTITLE in Template:Function
placed in a hidden div as the Function template already has a DISPLAYTITLE usage and displays an error
-->
<div style="display: none">{{DISPLAYTITLE:BIS_fnc_MP (Take On Helicopters)}}</div>

Revision as of 21:02, 15 December 2019

Hover & click on the images for description

Description

Description:
Send function for remote execution (and executes locally if conditions are met).
Arma 3
This page is about the Take On Helicopters function version.
For the (obsolete) Arma 3 version, see BIS_fnc_MP that has since been replaced by remoteExec and remoteExecCall.
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:
Log a message for every connected player: ["Imma spamming your log!", "BIS_fnc_log"] call BIS_fnc_MP;
Example 2:
Send a message containing "Hello World" to every player, including the ones who joins later using JIP: [["Hello World"], "BIS_fnc_guiMessage", nil, true, true] call BIS_fnc_MP;

Additional Information

See also:
BIS_fnc_MP (Arma 3)remoteExecremoteExecCallBIS_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)".