GetTireStatus - Export
The GetTireStatus export returns a table containing the current wear percentage of all four tires on the client-side vehicle.
{
fl = { health = 100.0 }, -- Front Left
fr = { health = 100.0 }, -- Front Right
rl = { health = 100.0 }, -- Rear Left
rr = { health = 100.0 } -- Rear Right
}local tireStatus = exports['bnc_carp']:GetTireStatus()
print("Rear right tire condition: " .. tireStatus.rr.health)Last updated
Was this helpful?