leaveVehicle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}")
mNo edit summary
 
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
|version2= 1.50


|arg= local |Multiplayer Arguments=
|game3= tkoh
|version3= 1.00


|eff= local |Multiplayer Effects=
|game4= arma3
|version4= 0.50


|gr1= Unit Control |GROUP1=
|arg= local


|gr2= Groups |GROUP2=
|eff= local
____________________________________________________________________________________________


| 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.
|gr1= Unit Control
<br><br>In short the command could be hypothetically presented as:<br>
<tt>[[leaveVehicle]] <nowiki>=</nowiki> un-[[addVehicle]] + [[unassignVehicle]] [[forEach]] [[crew]]</tt> <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]] |DESCRIPTION=
____________________________________________________________________________________________


| group '''leaveVehicle''' vehicle |SYNTAX=
|gr2= Groups


|p1= group: [[Group]] or [[Object]], in which case, object's [[Group]] is used |PARAMETER1=  
|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.<br>
<br>
In short the command could be hypothetically presented as:<br>
<sqf>leaveVehicle = un-addVehicle + unassignVehicle forEach crew</sqf>


|p2= vehicle: [[Object]] |PARAMETER2=
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.}}


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


| [[Nothing]] |RETURNVALUE=
|p1= group: [[Group]] or [[Object]] - object's [[Group]] is used


|x1= <code>_unit [[leaveVehicle]] _vehicle</code>|EXAMPLE1=
|p2= vehicle: [[Object]]


|x2= <code>_grp [[leaveVehicle]] _vehicle</code>|EXAMPLE2=
|r1= [[Nothing]]


____________________________________________________________________________________________
|x1= <sqf>_unit leaveVehicle _vehicle;</sqf>


| [[addVehicle]], [[assignAsCargo]], [[assignAsCommander]], [[assignAsDriver]], [[assignAsGunner]], [[assignedVehicle]], [[unassignVehicle]], [[doGetOut]], [[commandGetOut]], [[createVehicleCrew]] |SEEALSO=
|x2= <sqf>_grp leaveVehicle _vehicle;</sqf>
 
|seealso= [[addVehicle]] [[assignAsCargo]] [[assignAsCommander]] [[assignAsDriver]] [[assignAsGunner]] [[assignedVehicle]] [[unassignVehicle]] [[doGetOut]] [[commandGetOut]] [[createVehicleCrew]] [[assignedVehicles]] [[assignedGroup]] [[fullCrew]]
}}
}}


<h3 style='display:none'>Notes</h3>
{{Note
<dl class='command_description'>
|user= Killzone_Kid
<!-- Note Section BEGIN -->
|timestamp= 20130831160800
<dd class="notedate">Posted on August 31, 2013
|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]]
}}
<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.
 
 
<!-- Note Section END -->
</dl>
 
<h3 style='display:none'>Bottom Section</h3>
 
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|Scripting Commands}}
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

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.