При выводе ID кара пишет "-1", возможно связанно с тем, что я на пассажирском чекаю?
Lua:
function exit()
res = isCharInAnyCar(PLAYER_PED)
if res then
local Vehicle = storeCarCharIsIn(PLAYER_PED)
if Vehicle ~= nil then
local result, Vid = sampGetVehicleIdByCarHandle(Vehicle)
if result then
taskLeaveAnyCar(PLAYER_PED)
end
end
else
sampAddChatMessage('сядь в тачку', -1)
end
end