скриптик

VRush

https://t.me/vrushscript
Автор темы
2,415
1,206
Скрипт который будет брать ближаший пикап, скиньте пж
 

chapo

tg/inst: @moujeek
Модератор
9,071
12,033
ф:
local posX, posY, posZ = GetCoordinates()
            local mfind, mposX, mposY, mposZ = SearchMarker(posX, posY, posZ, 70.608696, false)
            if mfind then BeginToPoint(mposX, mposY, mposZ, 1.000000, -255, true) end

по идеи должно работать
маркер != пикап
/npic
Lua:
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
 
  • Влюблен
Реакции: SomaGnoma