gunner: Difference between revisions

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


? ('''gunner''' ([[vehicle]] [[player]]) != [[player]] : [[goto]] "reassign"
[[if]] ('''gunner''' [[vehicle]] [[player]] != [[player]]) [[then]] {[[goto]] "reassign"}
 
 
'''Notes:'''
 
It is also possible to find the gunner of a vehicle by placing a '''G''' after the name of the vehicle so:<br>
Tank1G and<br>
'''gunner''' Tank1<br>
both refer to the same unit.

Revision as of 17:54, 21 May 2006


gunner vehicle


Operand types:

vehicle: Object

Type of returned value:

Object

Description:

Gunner of the vehicle, if vehicle is not a vehicle, but person, person is returned.


Examples:

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


Notes:

It is also possible to find the gunner of a vehicle by placing a G after the name of the vehicle so:
Tank1G and
gunner Tank1
both refer to the same unit.