leaveVehicle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<tt>([^ ]*=[^ ]*)<\/tt>" to "{{hl|c= $1}}")
mNo edit summary
 
(18 intermediate revisions by 2 users not shown)
Line 21: Line 21:
|gr2= Groups
|gr2= Groups


|descr= Ceases the using of the vehicle by a group and unassigns vehicle from the group. If the argument is a single unit, the vehicle will be unassigned from unit's group. After vehicle is unassigned from the group, each individual crew member then unassigned from the vehicle.
|descr= Ceases the using of the vehicle by a group and unassigns vehicle from the group.
<br><br>In short the command could be hypothetically presented as:<br>
If the argument is a single unit, the vehicle will be unassigned from unit's group.
{{hl|c= [[leaveVehicle]] <nowiki>=</nowiki> un-[[addVehicle]] + [[unassignVehicle]] [[forEach]] [[crew]]}} <br>
After vehicle is unassigned from the group, each individual crew member then unassigned from the vehicle.<br>
However, to make it more reliable, it is best to move unit out of the vehicle manually with [[moveOut]] command and force unassign the vehicle with [[unassignVehicle]]
<br>
In short the command could be hypothetically presented as:<br>
<sqf>leaveVehicle = un-addVehicle + unassignVehicle forEach crew</sqf>
 
However, to make it more reliable, it is best to move unit out of the vehicle manually with [[moveOut]] and force unassign the vehicle with [[unassignVehicle]].
{{Feature|informative|See [[AI Group Vehicle Management]] for more information.}}
{{Feature|informative|See [[AI Group Vehicle Management]] for more information.}}


|s1= group [[leaveVehicle]] vehicle
|s1= group [[leaveVehicle]] vehicle


|p1= group: [[Group]] or [[Object]], in which case, object's [[Group]] is used
|p1= group: [[Group]] or [[Object]] - object's [[Group]] is used


|p2= vehicle: [[Object]]
|p2= vehicle: [[Object]]
Line 35: Line 39:
|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>_unit [[leaveVehicle]] _vehicle</code>
|x1= <sqf>_unit leaveVehicle _vehicle;</sqf>


|x2= <code>_grp [[leaveVehicle]] _vehicle</code>
|x2= <sqf>_grp leaveVehicle _vehicle;</sqf>


|seealso= [[addVehicle]], [[assignAsCargo]], [[assignAsCommander]], [[assignAsDriver]], [[assignAsGunner]], [[assignedVehicle]], [[unassignVehicle]], [[doGetOut]], [[commandGetOut]], [[createVehicleCrew]]
|seealso= [[addVehicle]] [[assignAsCargo]] [[assignAsCommander]] [[assignAsDriver]] [[assignAsGunner]] [[assignedVehicle]] [[unassignVehicle]] [[doGetOut]] [[commandGetOut]] [[createVehicleCrew]] [[assignedVehicles]] [[assignedGroup]] [[fullCrew]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Killzone_Kid
<dt></dt>
|timestamp= 20130831160800
<dd class="notedate">Posted on August 31, 2013</dd>
|text= In {{arma3}} this command will not force a player to exit from a vehicle. It will unassign vehicle role for this player. AI crew however will also disembark.
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
}}
<dd class="note">In Arma 3 this command will not force a player to exit from a vehicle. It will unassign vehicle role for this player. AI crew however will also disembark.
 
</dl>

Latest revision as of 07:26, 7 November 2023

Hover & click on the images for description

Description

Description:
Ceases the using of the vehicle by a group and unassigns vehicle from the group. If the argument is a single unit, the vehicle will be unassigned from unit's group. After vehicle is unassigned from the group, each individual crew member then unassigned from the vehicle.

In short the command could be hypothetically presented as:
However, to make it more reliable, it is best to move unit out of the vehicle manually with moveOut and force unassign the vehicle with unassignVehicle.
See AI Group Vehicle Management for more information.
Groups:
Unit ControlGroups

Syntax

Syntax:
group leaveVehicle vehicle
Parameters:
group: Group or Object - object's Group is used
vehicle: Object
Return Value:
Nothing

Examples

Example 1:
_unit leaveVehicle _vehicle;
Example 2:
_grp leaveVehicle _vehicle;

Additional Information

See also:
addVehicle assignAsCargo assignAsCommander assignAsDriver assignAsGunner assignedVehicle unassignVehicle doGetOut commandGetOut createVehicleCrew assignedVehicles assignedGroup fullCrew

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
Killzone_Kid - c
Posted on Aug 31, 2013 - 16:08 (UTC)
In Arma 3 this command will not force a player to exit from a vehicle. It will unassign vehicle role for this player. AI crew however will also disembark.