GetVehicleModelExhaustFumesPosition

From Multi Theft Auto: Wiki
Revision as of 02:39, 7 October 2017 by Thisdp (talk | contribs) (→‎Example)
Jump to navigation Jump to search

This function returns the position of the exhaust fumes the vehicle model emits.

Syntax

float, float, float setVehicleModelExhaustFumesPosition(int modelID)

Parameters

  • modelID: The vehicle model ID

Returns

Returns the position of the exhaust fumes if everything went fine or false otherwise.

Example

local x,y,z = getVehicleModelExhaustFumesPosition(411) -- Get its exhaust fumes position
setVehicleModelExhaustFumesPosition(vehicle,x,y,z+1) -- Set its exhaust fumes position
local vehicle = createVehicle(411,0,0,3) --Create a vehicle

See Also

Shared