BIS fnc MP – Talk
Categories: 
Killzone Kid (talk | contribs)  (→Notes pertaining to obsolete functionality:  new section)  | 
				Lou Montana (talk | contribs)  m (Text replacement - "<code> +" to "<code>")  | 
				||
| Line 8: | Line 8: | ||
When using [[BIS_fnc_MP]] with a scripting command from [[CfgRemoteExecCommands]] the number of ''params'' given defines how it is executed.  | When using [[BIS_fnc_MP]] with a scripting command from [[CfgRemoteExecCommands]] the number of ''params'' given defines how it is executed.  | ||
<code>  | <code>case 0: ''functionName'';  | ||
case 0: ''functionName'';  | |||
case 1: ''functionName params'';  | case 1: ''functionName params'';  | ||
case 2: (''params'' select 0) ''functionName'' (''params'' select 1);  | case 2: (''params'' select 0) ''functionName'' (''params'' select 1);  | ||
</code>  | </code>  | ||
</dd>  | </dd>  | ||
Revision as of 16:52, 7 February 2021
This does not execute on dedicated server. Is that a feature or bug? --Osmo 20:38, 9 May 2012 (CEST)
Notes pertaining to obsolete functionality
case 0: functionName;
case 1: functionName params;
case 2: (params select 0) functionName (params select 1);