getVehicleTowedByVehicle | Multi Theft Auto: Wiki Skip to content

getVehicleTowedByVehicle

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 being towed by another.

Syntax

getVehicleTowedByVehicle ( )

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 ( getVehicleTowedByVehicle ( towingVehicle ) == trailer ) then -- if it attached
outputChatBox ( "The vehicles were attached!" )
end

See Also

Vehicle Functions