local sampev = require 'lib.samp.events'
function sampev.onSendEnterVehicle(vehId, pass)
if not pass then
print('Сажусь в машину с ID:', vehId)
lua_thread.create(function()
while not isCharInAnyCar(PLAYER_PED) do wait(0) end
print('Сел в машину с ID:', vehId)
end)
end
end