local t, event = {
from = {x=2254, y=685, z=7},
to = {x=2328, y=711, z=7}
}, 0
local function player(p)
for x=t.from.x, t.to.x do
for y=t.from.y, t.to.y do
for z=t.from.z, t.to.z do
local v = getTopCreature({x=x, y=y, z=z}).uid
if isPlayer(v) then
..............................................................................
end
end
end
end
end
from = {x=2254, y=685, z=7},
to = {x=2328, y=711, z=7}
local t, event = {
from = {x=2254, y=685, z=7},
to = {x=2328, y=711, z=7}
}, 0
function onThink(interval, lastExecution, thinkInterval)
for x=t.from.x, t.to.x do
for y=t.from.y, t.to.y do
for z=t.from.z, t.to.z do
local v = getTopCreature({x=x, y=y, z=z}).uid
if isPlayer(v) then
..............................................................................
end
end
end
end
end