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