if imgui.Button('Repair car') then
if isCharInAnyCar(1) then
lua_thread.create(function()
setCarRoll(storeCarCharIsInNoSave(1), 0)
wait(100)
setCarHealth(storeCarCharIsInNoSave(1), 1500)
wait(100)
fixCar(storeCarCharIsInNoSave(1))
end)
else sampAddChatMessage('Error',-1)
end
end