getVehicleTowingVehicle | Multi Theft Auto: Wiki Skip to content

getVehicleTowingVehicle

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function is used to get the vehicle that is towing another.

Syntax

getVehicleTowingVehicle ( )

Code Examples

server

This example will create a trailer and a trailer-tower, attach them, then check if they attached.

local towingVehicle = createVehicle ( 515, 500, 500, 40 ) -- create a trailer-tower (roadtrain)
local trailer = createVehicle ( 435, 500, 490, 40 ) -- create a trailer
attachTrailerToVehicle ( towingVehicle, trailer ) -- attach them
if ( getVehicleTowingVehicle ( trailer ) == towingVehicle ) then -- if it attached
outputChatBox ( "The vehicles were attached!" )
end

See Also

Vehicle Functions