note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
IsTrailerAttachedToVehicle
Description
Checks if a vehicle has a trailer attached to it. Use GetVehicleTrailer to get the vehicle ID of the trailer (if any).
Name | Description |
---|---|
vehicleid | The ID of the vehicle to check for trailers. |
Returns
true - The vehicle has a trailer attached.
false - The vehicle does not have a trailer attached.
Examples
if (IsTrailerAttachedToVehicle(vehicleid))
{
printf("Vehicle %i has a trailer!", vehicleid);
}
Related Functions
- GetVehicleTrailer: Check what trailer a vehicle is pulling.
- AttachTrailerToVehicle: Attach a trailer to a vehicle.
- DetachTrailerFromVehicle: Detach a trailer from a vehicle.