lua:getcharactiveinterior

getCharActiveInterior

int interior = getCharActiveInterior(Ped ped)

Функция возвращает айди интерьера, в котором находится персонаж по его хендлу

Ped ped Хендл персонажа

int interior Айди интерьера

function main()
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand("test",function()
        interior = getCharActiveInterior(PLAYER_PED)
        sampAddChatMessage(interior,-1)
    end)
    wait(-1)
end