AttachTrailerToVehicle
คำอธิบาย
Attach a vehicle to another vehicle as a trailer.
Name | Description |
---|---|
trailerid | The ID of the vehicle that will be pulled. |
vehicleid | The ID of the vehicle that will pull the trailer. |
ส่งคืน
This function always returns 1, even if neither of the vehicle IDs passed are valid.
ตัวอย่าง
new vehicleid = CreateVehicle(...);
new trailerid = CreateVehicle(...);
AttachTrailerToVehicle(trailerid, vehicleid);
บันทึก
warning
This will only work if both vehicles are streamed in for a player (check IsVehicleStreamedIn).
ฟังก์ชั่นที่เกี่ยวข้องกัน
- 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.