BIS fnc transportService: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<dl class="command_description"> <dt></dt>" to "<dl class="command_description"> <dt></dt>") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{{RV|type=function | {{RV|type=function | ||
| arma2 | |game1= arma2 | ||
|1.00 | |version1= 1.00 | ||
|game2= arma2oa | |game2= arma2oa | ||
Line 44: | Line 44: | ||
|seealso= | |seealso= | ||
}} | }} | ||
<dl class="command_description"> | <dl class="command_description"> | ||
Line 55: | Line 51: | ||
<dt class="note">[[User:Lou Montana|Lou Montana]]</dt> | <dt class="note">[[User:Lou Montana|Lou Montana]]</dt> | ||
<dd class="note"> | <dd class="note"> | ||
''caller'' can only be [[player]] due to | ''caller'' can only be [[player]] due to {{arma2}} design: FSM overrides by {{ic|_clicker {{=}} [[player]]}} instead of {{ic|_clicker {{=}} [[Magic Variables#this|_this]] [[select]] 0}}).<br> | ||
Parameters displayed are incorrect, these are: | Parameters displayed are incorrect, these are: | ||
<code>_caller {{=}} [[Magic Variables#this|_this]] [[select]] 0; | <code>_caller {{=}} [[Magic Variables#this|_this]] [[select]] 0; | ||
Line 63: | Line 59: | ||
_secopScope {{=}} [[Magic Variables#this|_this]] [[select]] 4; | _secopScope {{=}} [[Magic Variables#this|_this]] [[select]] 4; | ||
[[if]] ([[count]] [[Magic Variables#this|_this]] > 5) [[then]] { | [[if]] ([[count]] [[Magic Variables#this|_this]] > 5) [[then]] | ||
{ | |||
_supportType {{=}} [[Magic Variables#this|_this]] [[select]] 5; | _supportType {{=}} [[Magic Variables#this|_this]] [[select]] 5; | ||
};</code> | };</code> | ||
</dd> | </dd> | ||
</dl> | </dl> |
Revision as of 14:07, 12 June 2021
Description
- Description:
- Description needed
- Execution:
- call
- Groups:
- Supports
Syntax
- Syntax:
- Syntax needed
- Return Value:
- Nothing
Examples
- Examples:
- Example needed
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
- Posted on April 28, 2018 - 00:21 (UTC)
- Lou Montana
-
caller can only be player due to Arma 2 design: FSM overrides by
_clicker = player
instead of_clicker = _this select 0
).
Parameters displayed are incorrect, these are:_caller = _this select 0; _veh = _this select 1; _passedPos = _this select 2; _mainScope = _this select 3; _secopScope = _this select 4; if (count _this > 5) then { _supportType = _this select 5; };