onClientTrailerDetach | Multi Theft Auto: Wiki Skip to content

onClientTrailerDetach

Client-side
Server-side
Shared

This event is triggered when a trailer gets detached from its towing vehicle.

Parameters

vehicle towedBy
  • towedBy: the vehicle that was towing the trailer.

Source

element: The source of this event is the trailer that is now detached.

Code Examples

client

This example outputs to the player that's towing the trailer that "The vehicle is now detached". (TESTED!)

addEventHandler("onClientTrailerDetach",root,function(towedBy)
player = getVehicleOccupant(towedBy,0)
outputChatBox("The vehicle is now detached.",player)
end)

See Also

Vehicle Functions