BIS fnc moveIn: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "|= Multiplayer " to "|Multiplayer= ")
m (Text replacement - "\[\[Category\:Function Group\: Misc(\|\{\{[a-zA-Z0-9_:]+\}\})?\]\]" to "")
Line 49: Line 49:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Misc|{{uc:moveIn}}]]
 
[[Category:Functions|{{uc:moveIn}}]]
[[Category:Functions|{{uc:moveIn}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:moveIn}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:moveIn}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:moveIn}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:moveIn}}]]

Revision as of 10:17, 10 October 2020

Hover & click on the images for description

Description

Description:
Moves a unit into vehicle. Compatible with assignedVehicleRole output.
Execution:
call
Multiplayer:
unit must be local
Groups:
Uncategorised

Syntax

Syntax:
[vehicle, unit, role] call BIS_fnc_moveIn
Parameters:
vehicle: Object
unit: Object - the unit to move into vehicle
role: Array - wanted seat, in format ["role"] or ["role", turretPath]. Can be one of:
  • "driver"
  • "gunner"
  • "commander"
  • "cargo"
  • "turret"
  • "": will load unit in the first available seat (using moveInAny)
Return Value:
Boolean - true if moved in successfully

Examples

Example 1:
[myCar, player, "cargo"] [call]] BIS_fnc_moveIn;
Example 2:
[myTank, player, ["turret", [0]]] [call]] BIS_fnc_moveIn;
Example 3:
[myTank, player, ["turret", -1]] [call]] BIS_fnc_moveIn; // will moveInDriver the player

Additional Information

See also:
moveInDrivermoveInGunnermoveInCommandermoveInCargomoveInTurretmoveInAny

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