Почему не работает?
Lua:
function exit()
res = isCharInAnyCar(PLAYER_PED)
if res then
sampAddChatMessage('res', -1)
local Vehicle = storeCarCharIsIn(PLAYER_PED)
if Vehicle ~= nil then
sampAddChatMessage('V', -1)
local bool, Vid = sampGetVehicleIdByCarHandle(Vehicle)
if bool then
sampAddChatMessage('bool', -1)
sampAddChatMessage(Vid, - 1)
sampSendExitVehicle(Vid)
end
end
else
sampAddChatMessage('сядь в тачку', -1)
end
end