driver: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 23: Line 23:
'''Example:'''
'''Example:'''


? ('''driver''' ([[vehicle]] [[player]]) != [[player]] : [[goto]] "reassign"
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:<br>
Tank1D and<br>
'''driver''' Tank1<br>
both refer to the same unit.

Revision as of 17:51, 21 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.