Update tabletRadar.lua

This commit is contained in:
erius0 2021-01-08 21:05:29 +03:00 committed by GitHub
parent 7c54d6952f
commit a3c42ac212
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ print("радар запущен")
while true do while true do
local players = radar.getPlayers() local players = radar.getPlayers()
for i = 1, #players do for i = 1, #players do
if (players[i].name not in WHITELIST) then if players[i].name not in WHITELIST then
print(players[i].name.." ; Расстояние: "..players[i].distance.." ; Координаты: x = "..players[i].x.." y = "..players[i].y.." z = "..players[i].z) print(players[i].name.." ; Расстояние: "..players[i].distance.." ; Координаты: x = "..players[i].x.." y = "..players[i].y.." z = "..players[i].z)
print("") print("")
end end