получить иды и ники игроков в радиусе раксамп

coldplugg.

Участник
Автор темы
180
22
Версия MoonLoader
.027.0-preview
получить иды и ники игроков в радиусе раксамп
 
Решение
это всех на сервере дает, а в радиусе допустим 10 метров
Lua:
function getDistanceBetweenCoords3d(x1, y1, z1, x2, y2, z2)
    return math.sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
end


for id, player in pairs(getAllPlayers()) do
    if (getDistanceBetweenCoords3d(player.position.x, player.position.y, player.position.z, getBotPosition()) <= 10) then
        print(id, player.nick)
    end
end

whyega52

Eblang головного мозга
Модератор
2,839
2,779
это всех на сервере дает, а в радиусе допустим 10 метров
Lua:
function getDistanceBetweenCoords3d(x1, y1, z1, x2, y2, z2)
    return math.sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
end


for id, player in pairs(getAllPlayers()) do
    if (getDistanceBetweenCoords3d(player.position.x, player.position.y, player.position.z, getBotPosition()) <= 10) then
        print(id, player.nick)
    end
end
 

coldplugg.

Участник
Автор темы
180
22
Lua:
function getDistanceBetweenCoords3d(x1, y1, z1, x2, y2, z2)
    return math.sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
end


for id, player in pairs(getAllPlayers()) do
    if (getDistanceBetweenCoords3d(player.position.x, player.position.y, player.position.z, getBotPosition()) <= 10) then
        print(id, player.nick)
    end
end
принтит вроде нормально, как делаю sendInput с id то сразу пишет других, кто не рядом
 
  • Эм
  • Вау
Реакции: qdIbp и whyega52

coldplugg.

Участник
Автор темы
180
22
Lua:
function getDistanceBetweenCoords3d(x1, y1, z1, x2, y2, z2)
    return math.sqrt((x2-x1)^2 + (y2-y1)^2 + (z2-z1)^2)
end


for id, player in pairs(getAllPlayers()) do
    if (getDistanceBetweenCoords3d(player.position.x, player.position.y, player.position.z, getBotPosition()) <= 10) then
        print(id, player.nick)
    end
end
Lua:
function getDistanceBetweenCoords3d(x1, y1, z1, x2, y2, z2)
    return math.sqrt(((x2 - x1)^2) + ((y2 - y1)^2) + ((z2 - z1)^2))
end
вот с этим все по кайфу