driver: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 28: Line 28:
'''Notes:'''
'''Notes:'''


It is also possible to find the driver of a vehicle by placing a '''D''' after the name of the vehicle so ''Tank1D'' and '''''driver''' Tank1'' both refer to the same unit, providing the original driver has not got out of the tank. The difference between the two is ''Tank1D'' is always the unit that was driver of the tank when the mission started, whilst '''''driver''' Tank1'' is the driver which is now there.
It is also possible to find the driver of a vehicle by placing a '''D''' after the name of the vehicle so ''Tank1D'' and '''''driver''' Tank1'' both refer to the same unit, providing the original driver has not got out of the tank.
 
The difference between the two is ''Tank1D'' is always the unit that was driver of the tank when the mission started, whilst '''''driver''' Tank1'' is the driver which is now there.

Revision as of 18:41, 24 May 2006


driver vehicle


Operand types:

vehicle: Object

Type of returned value:

Object

Description:

Driver of the vehicle, if vehicle is not vehicle but person, person is returned.


Example:

if (driver vehicle player != player) then {goto "reassign"}


Notes:

It is also possible to find the driver of a vehicle by placing a D after the name of the vehicle so Tank1D and driver Tank1 both refer to the same unit, providing the original driver has not got out of the tank.

The difference between the two is Tank1D is always the unit that was driver of the tank when the mission started, whilst driver Tank1 is the driver which is now there.