vehicle: Difference between revisions

From Bohemia Interactive Community
No edit summary
No edit summary
 
(68 intermediate revisions by 18 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|V]]
{{RV|type=command
[[Category:Scripting Commands OFP 1.97|V]]
[[Category:Scripting Commands OFP 1.46|V]]
[[Category:Scripting Commands ArmA|V]]


back to [[Scripting_Reference#V|COMREF]]
|game1= ofp
|version1= 1.00


<h2 style="color:#000066">''' vehicle ''unit'''''</h2>
|game2= ofpe
|version2= 1.00


|game3= arma1
'''Operand types:'''
|version3= 1.00


'''unit:''' [[Object]]
|game4= arma2
|version4= 1.00


'''Type of returned value:'''
|game5= arma2oa
|version5= 1.50


[[Object]]
|game6= tkoh
|version6= 1.00


'''Description:'''
|game7= arma3
|version7= 0.50


Vehicle in which given unit is mounted.
|arg= global


If none, unit is returned.
|gr1= Object Manipulation


|descr= Vehicle in which given unit is mounted. If none, unit is returned. Alternatively, use [[objectParent]]
{{Feature|important|While [[vehicle]] may return the vehicle the unit is in for '''[[alive]]''' units, for dead units which are groupless, this command returns the unit itself - use [[objectParent]] instead.}}


'''Example:'''
|s1= [[vehicle]] unitName


? '''vehicle''' [[player]] != [[player]] : [[hint]] "Player is in a vehicle"
|p1= unitName: [[Object]] - [[alive]] unit
 
|r1= [[Object]]
 
|x1= SQS
<sqs>? vehicle player != player : hint "Player is in a vehicle"</sqs>
 
|x2= SQF
<sqf>if (vehicle player != player) then { hint "Player is in a vehicle" };</sqf>
 
|seealso= [[objectParent]]
}}

Latest revision as of 21:48, 8 September 2025

Hover & click on the images for description

Description

Description:
Vehicle in which given unit is mounted. If none, unit is returned. Alternatively, use objectParent
While vehicle may return the vehicle the unit is in for alive units, for dead units which are groupless, this command returns the unit itself - use objectParent instead.
Groups:
Object Manipulation

Syntax

Syntax:
vehicle unitName
Parameters:
unitName: Object - alive unit
Return Value:
Object

Examples

Example 1:
SQS
? vehicle player != player : hint "Player is in a vehicle"
Example 2:
SQF
if (vehicle player != player) then { hint "Player is in a vehicle" };

Additional Information

See also:
objectParent

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