Skip to main content

AttachTrailerToVehicle

Description​

Attach a vehicle to another vehicle as a trailer.

NameDescription
traileridThe ID of the vehicle that will be pulled.
vehicleidThe ID of the vehicle that will pull the trailer.

Returns​

This function always returns true, even if neither of the vehicle IDs passed are valid.

Examples​

new vehicleId = CreateVehicle(403, 657.8788, 1721.9125, 7.7199, 41.0000, -1, -1, 100);
new trailerId = CreateVehicle(435, 651.8154, 1716.3301, 7.7700, 41.0000, -1, -1, 100);

AttachTrailerToVehicle(trailerId, vehicleId);

Notes​

warning

This will only work if both vehicles are streamed in for a player (check IsVehicleStreamedIn).