GetVehicleDamageStatus
คำอธิบาย
Retrieve the damage statuses of a vehicle.
Name | Description |
---|---|
vehicleid | The ID of the vehicle to get the damage statuses of. |
VEHICLE_PANEL_STATUS:panels | A variable to store the panel damage data in, passed by reference. |
VEHICLE_DOOR_STATUS:doors | A variable to store the door damage data in, passed by reference. |
VEHICLE_LIGHT_STATUS:lights | A variable to store the light damage data in, passed by reference. |
VEHICLE_TYRE_STATUS:tyres | A variable to store the tire damage data in, passed by reference. |
ส่งคืน
1 - The function was executed successfully.
0 - The function failed to execute. This means the vehicle specified does not exist.
ตัวอย่าง
new
VEHICLE_PANEL_STATUS:panels,
VEHICLE_DOOR_STATUS:doors,
VEHICLE_LIGHT_STATUS:lights,
VEHICLE_TYRE_STATUS:tyres;
GetVehicleDamageStatus(vehicleid, panels, doors, lights, tyres);
printf("Vehicle Status: [Panels]: %d - [Doors]: %d - [Lights]: %d - [Tyres]: %d", panels, doors, lights, tyres);
บันทึก
tip
The stored values are bit masks. Bitwise operators will allow you to use the values.
tip
For some useful functions for working with vehicle damage values, see here.
ฟังก์ชั่นที่เกี่ยวข้องกัน
- UpdateVehicleDamageStatus: Update the vehicle damage.
- SetVehicleHealth: Set the health of a vehicle.
- GetVehicleHealth: Check the health of a vehicle.
- RepairVehicle: Fully repair a vehicle.
Related Callbacks
- OnVehicleDamageStatusUpdate: Called when a vehicle's damage state changes.