GetVehicleTurretPosition

From Multi Theft Auto: Wiki
Revision as of 07:32, 28 March 2006 by JonChappell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

This function returns two floats containing the rotational position of the vehicle's turret along the horizontal and vertical axes (X and Y) respectively. This function can fail if the player is not in a vehicle, or if the vehicle does not have a turret. Vehicles with turrets include tanks and fire trucks. If this function does fail, the first argument will be set to 'false'.

Syntax

float float GetVehicleTurretPosition ( vehicle vehicle )

This function also has three variants that allow you to retrieve data from just one of the three axis.

float GetVehicleTurretPositionX ( vehicle vehicle )
float GetVehicleTurretPositionY ( vehicle vehicle )
float GetVehicleTurretPositionZ ( vehicle vehicle )

Required Arguments

  • vehicle: The vehicle whose rotation you want to retrieve.

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )
x, y = GetVehicleTurretPosition ( newcar )

if (x)
 serverchat ( "Turret position: ",x,",",y,"." )
end