nevix
Tunzodus.net
Please help, how to check eg: from x y z to x y z player egzist or no? in specified field
I dont know from what to start :/
I dont know from what to start :/
for x = 1000, 2000 do
for y = 1000, 2000 do
local t = getThingfromPos({x=x, y=y, z=7, stackpos = STACKPOS_TOP_CREATURE})
if isPlayer(t.uid) then
-- blabla
end
end
end
local spectators = getSpectators(centerPos, 5, 5, false)
if spectators ~= nil then
for _, spectator in ipairs(spectators) do
if isPlayer(spectator) then
-- code
end
end
end