- Версия MoonLoader
- Другое
Как координаты получить ближайшие из списка к игроку по дистанции
Lua:
function cust()
local distanceList = {}
for id = 0,2048 do
if sampIs3dTextDefined(id) then
text, color, posX, posY, posZ, distance, ignoreWalls, playerId, vehicleId = sampGet3dTextInfoById(id)
if text:find('Чтобы сорвать куст%.') then
x,y,z = getCharCoordinates(PLAYER_PED)
distanceList[#distanceList + 1] = getDistanceBetweenCoords3d(x,y,z,posX,posY,posZ)
end
end
end
table.sort(distanceList)
end