AttachTrailerToVehicle
From SA-MP Wiki
Description:
Attach a vehicle to another vehicle as a trailer.
Important | This will only work if both vehicles are streamed in for a player (check IsVehicleStreamedIn). |
(trailerid, vehicleid)
trailerid | The ID of the vehicle that will be pulled. |
vehicleid | The ID of the vehicle that will pull the trailer. |
Return Values:
This function always returns 1, even if neither of the vehicle IDs passed are valid.
new vehicleid = CreateVehicle(...); new trailerid = CreateVehicle(...); AttachTrailerToVehicle(trailerid, vehicleid);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- DetachTrailerFromVehicle: Detach a trailer from a vehicle.
- IsTrailerAttachedToVehicle: Check if a trailer is attached to a vehicle.
- GetVehicleTrailer: Check what trailer a vehicle is pulling.