function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
if isCharSeatInCar() then
sampAddChatMessage('Вы сели в авто!', -1)
end
end
end
function isCharSeatInCar()
local inCar = isCharInAnyCar(PLAYER_PED)
if inCar and not seat then
seat = true
return true
elseif not inCar then
seat = false
return false
end
end