getVehicleTowingVehicle | Multi Theft Auto: Wiki Skip to content

getVehicleTowingVehicle

Client-side
Server-side
Shared

Manual Review Required

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.

OOP Syntax Help! I don't understand this!

  • Method:vehicle:getTowingVehicle(...)
  • Variable: .towingVehicle

Syntax

vehicle getVehicleTowingVehicle ( vehicle theVehicle )
Required Arguments
  • theVehicle: the vehicle being towed.

Returns

  • vehicle: value

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

Code Examples

shared

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