Нужно что бы чар выходил из машины:

Статус
В этой теме нельзя размещать новые ответы.

trxpboi

Участник
Автор темы
98
5
Почему не работает?

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
 
Статус
В этой теме нельзя размещать новые ответы.