Lua:
function findvehicle(vehicleId)
lua_thread.create(function()
wait(1000) -- Wait for 1000 milliseconds (1 second)
local result, car = sampGetCarHandleBySampVehicleId(vehicleId)
if result then
local model = getCarModel(car)
if model == 520 then
sampAddChatMessage('found!', -1)
addOneOffSound(0.0, 0.0, 0.0, 1138)
end
end
end)
end
как сделать так, чтобы перед уведомлением проверялось, пуст ли автомобиль?