function getClosestPickup()
local ret = {handle = -1, id = -1, dist = 9999}
local mindist = 9999
for i = 0, 4096 do
local handle = sampGetPickupHandleBySampId(i)
if doesPickupExist(handle) then
local mx, my, mz = getCharCoordinates(PLAYER_PED)
local x, y, z = getPickupCoordinates(handle)
local dist = getDistanceBetweenCoords3d(mx, my, mz, x, y, z)
if dist < mindist then
ret = {handle = handle, id = i, dist = dist}
mindist = dist
end
end
end
return ret
end
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('npic', function()
local data = getClosestPickup()
if data.id ~= -1 then
print('Беру пикап '..data.id)
sampSendPickedUpPickup(data.id)
else
print('[ОШИБКА] Пикап не найден :(', -1)
end
end)
wait(-1)
end