LuaScripts/tabletRadar.lua
2021-01-08 20:32:06 +03:00

15 lines
432 B
Lua

local component = require("component")
local radar = component.radar
print("нажми D чтобы выйти из радара")
while true do
local players = radar.getPlayers()
for i = 1, #pl_list do
print('Имя: '.. pl_list[i].name)
print('Дистанция: '..pl_list[i].distance)
print('Координаты: x = '..pl_list[i].x..' y = '..pl_list[i].y..' z = '..pl_list[i].z)
print(' ')
end
end